Skip to content

Commit

Permalink
fix: fix lib
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed May 23, 2024
1 parent ef83667 commit ffbebaf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/lib/mkImports.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ let
# in our list, we import them directly
applyImports = file: _:
import "${dir}/${file}" (args // {
lib =
lib.extend (final: _: { ctp = import ./. (args // { lib = final; }); });
lib = lib.extend (final: _: (import ./. (args // { lib = final; })));

defaultSources = import ../../.sources;
});
Expand Down

0 comments on commit ffbebaf

Please sign in to comment.