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 5779990 commit 40fee33Copy full SHA for 40fee33
build/flake-module.nix
@@ -14,7 +14,17 @@ let
14
nixpkgs.overlays = [
15
inputs.nix.overlays.default
16
inputs.hydra.overlays.default
17
- inputs.nixos-channel-scripts.overlays.default
+ (
18
+ final: prev:
19
+ inputs.nixos-channel-scripts.overlays.default (
20
+ final
21
+ // {
22
+ # Doesn't yet work with Nix 2.28
23
+ # https://github.com/NixOS/nixos-channel-scripts/issues/79
24
+ nix = final.nixVersions.nix_2_24;
25
+ }
26
+ ) prev
27
+ )
28
inputs.rfc39.overlays.default
29
];
30
};
0 commit comments