dots/hosts/orion/os/hardware.nix
Price Hiller f95b8f164e
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 36s
feat(hosts/orion): enable bolt for thunderbolt
2024-09-27 02:02:22 -05:00

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;
}