diff --git a/hosts/python/apps.nix b/hosts/python/apps.nix index dcabf6f..674e5ad 100644 --- a/hosts/python/apps.nix +++ b/hosts/python/apps.nix @@ -30,7 +30,6 @@ enable = true; package = pkgs.amadaluzian-waybar; }; - libvirt.enable = true; direnv.enable = true; git.enable = true; openssh.enable = true; diff --git a/hosts/shared/libvirt.nix b/hosts/shared/libvirt.nix deleted file mode 100644 index 52c5ea9..0000000 --- a/hosts/shared/libvirt.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: let - cfg = config.alqueva.programs.libvirt; -in { - options.alqueva.programs.libvirt = { - enable = lib.mkEnableOption "libvirt"; - }; - - config = lib.mkIf cfg.enable { - virtualisation.libvirtd = { - enable = true; - qemu.package = pkgs.qemu_kvm; - }; - - programs.virt-manager.enable = true; - networking.nftables.enable = true; - }; -}