feat(luna): set correct boot kernel modules

This commit is contained in:
Price Hiller 2023-10-27 23:14:57 -05:00
parent 14a152799f
commit ad5bb6d5d0
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 11 additions and 4 deletions

View File

@ -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 = {

View File

@ -1,4 +1,4 @@
{ ... }:
{ modulesPath, ... }:
{
imports = [