fix(libvirt): remove libvirt

This commit is contained in:
Artur Manuel 2025-02-12 16:44:55 +00:00
commit 883d79fa0f
2 changed files with 0 additions and 23 deletions

View file

@ -30,7 +30,6 @@
enable = true; enable = true;
package = pkgs.amadaluzian-waybar; package = pkgs.amadaluzian-waybar;
}; };
libvirt.enable = true;
direnv.enable = true; direnv.enable = true;
git.enable = true; git.enable = true;
openssh.enable = true; openssh.enable = true;

View file

@ -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;
};
}