diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-05-08T22·58+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-05-08T22·58+0200 |
commit | 29ab1eb0a110c74bf70c0da0c9c8d3ab4f7ab3d4 (patch) | |
tree | 0ad65020f127717ba6e5ccc6eb4af105dfd26c43 /configuration.nix | |
parent | 1b289e5486df6055213ee14adcc5846105ab5555 (diff) |
feat(config): Enable Intel microcode updates on boot
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index a4891b812dd1..063acf96b0b6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -25,6 +25,9 @@ boot.kernelModules = [ "snd-seq" "snd-rawmidi" ]; hardware.pulseaudio.package = pkgs.pulseaudioFull; + # Update Intel microcode on boot (both machines have Intel CPUs): + hardware.cpu.intel.updateMicrocode = true; + networking = { # Don't use ISP's DNS servers: nameservers = [ |