1
0
Fork 0

make re-exports explicit again

This commit is contained in:
kiara Grouwstra 2025-03-25 08:42:55 +01:00
parent 65159cdc18
commit 264fbf8729
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -4,7 +4,7 @@
pkgs ? import sources.nixpkgs {
inherit system;
},
}@args:
}:
let
inherit (pkgs) lib;
in
@ -16,7 +16,12 @@ in
(import ./tf.nix { inherit lib pkgs; })
];
};
# re-export inputs so they can be overridden granularly
# (they can't be accessed from the outside any other way)
inherit
sources
system
pkgs
;
}
# re-export inputs so they can be overridden granularly
# (they can't be accessed from the outside any other way)
// args