remove virtualisation module
2 files changed, 0 insertions(+), 24 deletions(-)
changed files
M system/hosts/prefect.nix → system/hosts/prefect.nix
@@ -19,7 +19,6 @@ ../settings/hardware/keyboard.nix ../settings/hardware/keyboard-lofree.nix ../settings/hardware/trezor.nix ../settings/services/syncthing.nix - ../settings/services/virtualisation.nix ../settings/user-interface.nix ../settings/programs/base.nix ../settings/programs/kde.nix
D system/settings/services/virtualisation.nix
@@ -1,23 +0,0 @@ -{ - pkgs, - ... -}: -{ - virtualisation.libvirtd = { - enable = true; - onBoot = "ignore"; - onShutdown = "shutdown"; - qemu = { - package = pkgs.qemu_kvm; - ovmf.enable = true; - runAsRoot = false; - }; - }; - programs.virt-manager = { - enable = true; - }; - - environment.systemPackages = with pkgs; [ - OVMF - ]; -}