diff --git a/hosts/luna/os/boot.nix b/hosts/luna/os/boot.nix index cb68987..bce6634 100644 --- a/hosts/luna/os/boot.nix +++ b/hosts/luna/os/boot.nix @@ -1,8 +1,15 @@ -{ ... }: +{ modulesPath, ... }: { - boot = { + + imports = + [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.extraModulePackages = [ ]; + boot = { initrd = { - availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ]; + availableKernelModules = [ "xhci_pci" "ahci" "nvme" "uas" "sd_mod" ]; kernelModules = [ ]; }; loader = { diff --git a/hosts/luna/os/default.nix b/hosts/luna/os/default.nix index 224a17f..88dcd6f 100644 --- a/hosts/luna/os/default.nix +++ b/hosts/luna/os/default.nix @@ -1,4 +1,4 @@ -{ ... }: +{ modulesPath, ... }: { imports = [