diff options
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/default.nix | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/nixosConfigurations/default.nix b/nixosConfigurations/default.nix index 2fa32f9..b2e1511 100644 --- a/nixosConfigurations/default.nix +++ b/nixosConfigurations/default.nix @@ -1,8 +1,5 @@ -{ - inputs, - lib, -}: -with lib; let +inputs: +with inputs.self.lib; let mkConfiguration = name: { modules ? [], configuration ? ./${name}, @@ -21,7 +18,8 @@ with lib; let ++ optional (configuration != null) (import configuration); specialArgs = { - inherit inputs lib this; + inherit inputs this; + inherit (inputs.self) lib; } // extraSpecialArgs; }); |