11 lines
249 B
Nix
11 lines
249 B
Nix
{ pkgs, ... }: {
|
|
virtualisation.libvirtd.enable = true;
|
|
programs.virt-manager.enable = true;
|
|
services.qemuGuest.enable = true;
|
|
services.spice-vdagentd.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
qemu
|
|
quickemu
|
|
];
|
|
}
|