From 69e05f65992f0516c42735a8044b790fe13530ba Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Wed, 6 Aug 2025 01:17:57 +0200 Subject: [PATCH] Fix wifi --- hosts/jalr-t520/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/jalr-t520/configuration.nix b/hosts/jalr-t520/configuration.nix index 2d23e72..e10957b 100644 --- a/hosts/jalr-t520/configuration.nix +++ b/hosts/jalr-t520/configuration.nix @@ -22,7 +22,10 @@ workstation.enable = true; }; - hardware.cpu.intel.updateMicrocode = true; + hardware = { + cpu.intel.updateMicrocode = true; + firmware = [ pkgs.linux-firmware ]; + }; powerManagement.cpuFreqGovernor = "performance";