commit | 30817a7461e680d9054bca54013ca085ae1c6a6f | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Thu Jul 21 00:36:23 2022 +0100 |
committer | Skyler Grey <skyler3665@gmail.com> | Thu Jul 21 00:39:36 2022 +0100 |
tree | 8d560b19de349639e77f1434ab17db81f70ab89b | |
parent | 6b15586bef2336894ccd89909670204b3476ea41 [diff] [blame] |
Add unstable overlays
diff --git a/src/unstable-overlays/nix.nix b/src/unstable-overlays/nix.nix new file mode 100644 index 0000000..04eb7db --- /dev/null +++ b/src/unstable-overlays/nix.nix
@@ -0,0 +1,7 @@ +final: prev: { + nixFlakes = prev.nixFlakes.overrideAttrs (old: { + patches = (old.patches or []) ++ [ + ./nix/5567-make-installables-expr-context.patch + ]; + }); +}