We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dce5f3 commit 5779990Copy full SHA for 5779990
build/common.nix
@@ -15,6 +15,14 @@
15
16
nixpkgs.config.allowUnfree = true;
17
18
+ nixpkgs.overlays = [
19
+ (_prev: final: {
20
+ # fails to find nix-main against nix 2.28.x
21
+ # https://github.com/NixOS/infra/pull/620#issuecomment-2784979947
22
+ nixos-option = final.nixos-option.override { nix = pkgs.nixVersions.nix_2_24; };
23
+ })
24
+ ];
25
+
26
hardware.enableAllFirmware = true;
27
hardware.cpu.amd.updateMicrocode = true;
28
hardware.cpu.intel.updateMicrocode = true;
0 commit comments