mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
17 lines
332 B
Nix
17 lines
332 B
Nix
{ pkgs, ... }:
|
|
{
|
|
virtualisation = {
|
|
# vmware.host.enable = true; # Causes issues for now :p
|
|
waydroid.enable = true;
|
|
libvirtd.enable = true;
|
|
spiceUSBRedirection.enable = true;
|
|
};
|
|
|
|
programs.virt-manager.enable = true;
|
|
|
|
# Enable qemu etc
|
|
environment.systemPackages = with pkgs; [
|
|
qemu
|
|
quickemu
|
|
];
|
|
}
|