configuration.nix/hosts/rico2/hardware/kernel.nix

15 lines
239 B
Nix

{ lib
, pkgs
, ...
}: {
boot = {
initrd = {
availableKernelModules = [
"usbhid"
"usb_storage"
];
systemd.enable = true;
};
};
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
}