parent
131299587c
commit
9aca532b78
10 changed files with 66 additions and 81 deletions
overlays/nix-version
15
overlays/nix-version/default.nix
Normal file
15
overlays/nix-version/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{nix ? null}: (
|
||||
final: prev:
|
||||
builtins.mapAttrs
|
||||
(n: v:
|
||||
if nix == null
|
||||
then prev.${n}
|
||||
else v)
|
||||
{
|
||||
inherit nix;
|
||||
|
||||
nix-serve-ng = prev.nix-serve-ng.override {
|
||||
inherit nix;
|
||||
};
|
||||
}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue