diff options
author | Ben Sima <ben@bsima.me> | 2019-08-31 00:50:27 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-08-31 00:50:27 -0700 |
commit | 003990b6630d4b08d3bd1aa58bc1f4bb430154b2 (patch) | |
tree | a53a33950adcdd6e44faf15bcb5030e4e08d85c0 /depo/default.nix | |
parent | 19732ae8d1da6347ab48c1123758fde6ace7a734 (diff) |
depo: pass nixos as an argument
this allows us to centralize the nixpkgs import.
Diffstat (limited to 'depo/default.nix')
-rw-r--r-- | depo/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/depo/default.nix b/depo/default.nix index 131320d..e2c5d6a 100644 --- a/depo/default.nix +++ b/depo/default.nix @@ -1,5 +1,6 @@ -{ -nutin-madaj = import ./nutin-madaj; -hikuj-zupip = import ./hikuj-zupip; +{ nixos }: +{ + nutin-madaj = import ./nutin-madaj { inherit nixos; }; + hikuj-zupip = import ./hikuj-zupip { inherit nixos; }; } |