diff --git a/templates/clan/default/flake.nix b/templates/clan/default/flake.nix index 0b339d04b..17582db0b 100644 --- a/templates/clan/default/flake.nix +++ b/templates/clan/default/flake.nix @@ -3,12 +3,18 @@ inputs.nixpkgs.follows = "clan-core/nixpkgs"; outputs = - { self, clan-core, ... }: + { + self, + clan-core, + nixpkgs, + ... + }@inputs: let # Usage see: https://docs.clan.lol clan = clan-core.lib.clan { inherit self; imports = [ ./clan.nix ]; + specialArgs = { inherit inputs; }; }; in { @@ -16,7 +22,7 @@ # Add the Clan cli tool to the dev shell. # Use "nix develop" to enter the dev shell. devShells = - clan-core.inputs.nixpkgs.lib.genAttrs + nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux"