Hardcode system-specific hardware settings.

This commit is contained in:
2023-06-30 11:44:31 +01:00
parent 3548322187
commit 66b931e64d
3 changed files with 6 additions and 6 deletions

View File

@@ -46,6 +46,6 @@
randomEncryption.enable = true;
}];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
nixpkgs.hostPlatform = "x86_64-linux";
hardware.cpu.intel.updateMicrocode = true;
}