diff --git a/lib/flake-module.nix b/lib/flake-module.nix index 48c682e2f..517e96d49 100644 --- a/lib/flake-module.nix +++ b/lib/flake-module.nix @@ -1,4 +1,5 @@ { lib +, self , inputs , ... }: { @@ -6,7 +7,8 @@ ./jsonschema/flake-module.nix ]; flake.lib = import ./default.nix { + clan = self; inherit lib; - inherit (inputs) clan nixpkgs; + inherit (inputs) nixpkgs; }; }