feat(luna): enable intel update microcode

This commit is contained in:
Price Hiller 2023-10-27 23:16:22 -05:00
parent ad5bb6d5d0
commit 2d08a50d8d
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,7 @@
imports = [
./boot.nix
./filesystem.nix
./hardware.nix
];
system.stateVersion = "23.11";
}

View File

@ -0,0 +1,4 @@
{ lib, config, ... }:
{
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}