feat(incinerator): add config loader

This commit is contained in:
514fpv 2024-01-05 08:44:26 +08:00
parent 8335ac6f96
commit 81e6633526
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -9,7 +9,12 @@
fs.store = "534f985d-0540-49eb-a2f6-b30ea16f41ad";
};
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
imports = lib.pipe ./. [
builtins.readDir
(lib.filterAttrs (n: ty: ty == "regular" && n != "default.nix"))
(lib.mapAttrsToList (n: _: ./${n}))
] ++ [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];