make re-exports explicit again

This commit is contained in:
Kiara Grouwstra 2025-03-25 08:42:55 +01:00
parent 231c564c7a
commit be03794f5f
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -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
# (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