Pin the version of linux-firmware.

New versions of linux-firmware break my wifi on my laptop. I am pinning the firmware version so I can update the rest of my software.
This commit is contained in:
Tom Alexander
2025-06-01 20:10:25 -04:00
parent 0f2c595538
commit 99bc8c6d79
3 changed files with 19 additions and 9 deletions

View File

@@ -2,6 +2,7 @@
config,
lib,
pkgs,
pkgs-dda3dcd3f,
...
}:
@@ -91,4 +92,13 @@
# This is enabled by default in nixos.
# "net.ipv6.conf.default.use_tempaddr" = 2;
};
nixpkgs.overlays = [
(final: prev: {
inherit (pkgs-dda3dcd3f)
linux-firmware
;
})
];
}