debugging...

apperently I only needed to change like 5 lines?? I locked the hell in
This commit is contained in:
2026-07-06 00:09:03 -05:00
parent 0ee2bdb3f8
commit 3a17b271f7
4 changed files with 29 additions and 18 deletions
+2
View File
@@ -90,6 +90,8 @@ in
};
};
system.stateVersion = "26.11";
boot.loader =
if cfg.bootloader.type == "grub" then
{
+4 -1
View File
@@ -11,7 +11,6 @@ in
config = lib.mkMerge [
(lib.mkIf cfg.qemu.enable {
virtualisation = {
containers.enable = cfg.qemu.containers;
libvirtd = {
enable = true;
qemu = {
@@ -34,6 +33,10 @@ in
programs.virt-manager.enable = true;
})
(lib.mkIf (cfg.qemu.enable && cfg.qemu.containers) {
virtualisation.containers.enable = true;
})
(lib.mkIf cfg.qemu.enable {
boot.kernelModules = cfg.qemu.bootModules;
})