niv: pin nil to repo unstable version

This commit is contained in:
Primrose 2025-06-16 08:12:09 +02:00
parent d91d1b2f6a
commit 409b58ccd7
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
3 changed files with 21 additions and 0 deletions

8
nix/overlays/nil.nix Normal file
View file

@ -0,0 +1,8 @@
# Run the one with my cool feature here for now
let
sources = import ../sources.nix;
inherit (sources) nil;
in
final: _: {
nil = (builtins.getFlake "github:${nil.owner}/${nil.repo}/${nil.rev}").packages.${final.system}.default;
}