diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-10 02:32:29 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-10 02:32:29 -0800 |
commit | a4f505335b0fad56b1851385abcba5f7d35ec72e (patch) | |
tree | 28b4871db17b4218d3520cea857d34bc19f12035 /desktop/configuration.nix | |
parent | a9d6afe9c3df4ef8bef2dd933b7c302754aca15e (diff) |
finalize my iso installation medium
Diffstat (limited to 'desktop/configuration.nix')
-rw-r--r-- | desktop/configuration.nix | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/desktop/configuration.nix b/desktop/configuration.nix index 1e24cad..be88245 100644 --- a/desktop/configuration.nix +++ b/desktop/configuration.nix @@ -6,7 +6,6 @@ in imports = []; hardware = { - cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; enableRedistributableFirmware = true; }; @@ -52,7 +51,18 @@ in extraModulePackages = [ ]; initrd = { - availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" ]; + availableKernelModules = [ + "xhci_pci" + "ahci" + "usb_storage" + "sd_mod" + "nvme" + "sd_mod" + "ehci_pci" + "rtsx_pci_sdmmc" + "usbhid" + ]; + kernelModules = [ ]; }; |