mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
12 lines
164 B
Nix
12 lines
164 B
Nix
{ ... }:
|
|
{
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
spiceUSBRedirection.enable = true;
|
|
libvirtd = {
|
|
enable = true;
|
|
package = pkgs.qemu_kvm;
|
|
};
|
|
};
|
|
}
|