mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
17 lines
348 B
Nix
17 lines
348 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
boot = {
|
|
initrd = {
|
|
availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "usb_storage" "sd_mod" ];
|
|
kernelModules = [ ];
|
|
};
|
|
kernelModules = [ ];
|
|
extraModulePackages = [ ];
|
|
kernelParams = [
|
|
"usbcore.autosuspend=-1"
|
|
"acpi_osi=Linux"
|
|
"acpi_enforce_resources=lax"
|
|
];
|
|
};
|
|
}
|