diff options
author | sefidel <contact@sefidel.net> | 2024-08-04 22:12:04 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-08-06 16:01:38 +0900 |
commit | f32cda5a3179fdce587349e8014fa2ee012de4ee (patch) | |
tree | c276fed9894c3914a842b8e29398a7a7403c276a | |
parent | 9c599fbcc5c4a5e04157655ac54c1b961c7e1ace (diff) | |
download | nixrc-f32cda5a3179fdce587349e8014fa2ee012de4ee.tar.gz nixrc-f32cda5a3179fdce587349e8014fa2ee012de4ee.zip |
feat(lib): allow use of inputs downstream
-rw-r--r-- | lib/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/default.nix b/lib/default.nix index d437dc6..2ed3bca 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -11,7 +11,7 @@ let mylib = makeExtensible (self: mapModules ./. - (file: import file ({ inherit lib; } // inputs))); + (file: import file ({ inherit lib inputs; } // inputs))); in mylib.extend (self: super: |