dots/hosts/orion/os/hardware.nix
Price Hiller 4fc28fe8b2
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 43s
feat(hosts/orion): enable powersave for wifi
2024-08-13 15:41:28 -05:00

10 lines
285 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
'';
}