summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2021-01-21 13:12:42 -0700
committerKenny Ballou <kballou@devnulllabs.io>2021-01-21 13:12:42 -0700
commit7cce51d9abffca768abd936bd790e3a038041d0f (patch)
tree3f9aa96ff01c4822a2abb5ab307f07dcec9a5552 /system
parent471054c32e3b64214fd7212eafb2ca2cbe18e3e8 (diff)
downloadcfg.nix-7cce51d9abffca768abd936bd790e3a038041d0f.tar.gz
cfg.nix-7cce51d9abffca768abd936bd790e3a038041d0f.tar.xz
intel: add microcode updates
Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'system')
-rw-r--r--system/intel.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/system/intel.nix b/system/intel.nix
new file mode 100644
index 0000000..7b46947
--- /dev/null
+++ b/system/intel.nix
@@ -0,0 +1,5 @@
+{ config, lib, ... }:
+{
+ hardware.cpu.intel.updateMicrocode =
+ lib.mkDefault config.hardware.enableRedistributableFirmware;
+}