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;
|
2024-08-11 17:03:30 -05:00
|
|
|
boot.extraModprobeConfig = ''
|
|
|
|
options iwlwifi power_save=1
|
|
|
|
'';
|
2024-09-27 02:02:22 -05:00
|
|
|
services.hardware.bolt.enable = true;
|
2024-05-03 14:35:00 -05:00
|
|
|
}
|