diff options
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 = [ ]; }; |