Price Hiller
f95b8f164e
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 36s
11 lines
325 B
Nix
11 lines
325 B
Nix
{ lib, config, ... }:
|
|
{
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
services.fstrim.enable = true;
|
|
boot.extraModprobeConfig = ''
|
|
options iwlwifi power_save=1
|
|
'';
|
|
services.hardware.bolt.enable = true;
|
|
}
|