Files
nixos/machines/bomba/virtualisation.nix
2026-02-06 08:39:23 +01:00

12 lines
164 B
Nix

{ ... }:
{
virtualisation = {
docker.enable = true;
spiceUSBRedirection.enable = true;
libvirtd = {
enable = true;
package = pkgs.qemu_kvm;
};
};
}