forked from Fediversity/Fediversity
make re-exports explicit again
This commit is contained in:
parent
231c564c7a
commit
be03794f5f
1 changed files with 9 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
pkgs ? import sources.nixpkgs {
|
pkgs ? import sources.nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
},
|
},
|
||||||
}@args:
|
}:
|
||||||
let
|
let
|
||||||
inherit (pkgs) lib;
|
inherit (pkgs) lib;
|
||||||
in
|
in
|
||||||
|
@ -16,7 +16,12 @@ in
|
||||||
(import ./tf.nix { inherit lib pkgs; })
|
(import ./tf.nix { inherit lib pkgs; })
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
|
||||||
# re-export inputs so they can be overridden granularly
|
# re-export inputs so they can be overridden granularly
|
||||||
# (they can't be accessed from the outside any other way)
|
# (they can't be accessed from the outside any other way)
|
||||||
// args
|
inherit
|
||||||
|
sources
|
||||||
|
system
|
||||||
|
pkgs
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue