From 883d79fa0f8c0633e2fe3ab97864440bb498fd03 Mon Sep 17 00:00:00 2001 From: Artur Manuel Date: Wed, 12 Feb 2025 16:44:55 +0000 Subject: [PATCH] fix(libvirt): remove libvirt --- hosts/python/apps.nix | 1 - hosts/shared/libvirt.nix | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 hosts/shared/libvirt.nix 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; - }; -}