dots/hosts/orion/os/hardware.nix

10 lines
285 B
Nix
Raw Normal View History

2024-05-03 14:35:00 -05:00
{ 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
'';
2024-05-03 14:35:00 -05:00
}