diff --git a/flake.nix b/flake.nix index f67501c..d416096 100644 --- a/flake.nix +++ b/flake.nix @@ -4,14 +4,15 @@ type = "indirect"; id = "nixpkgs"; }; - inputs.gitignore = = { url = "github:hercules-ci/gitignore.nix"; flake = false; }; + + inputs.gitignore = { url = "github:hercules-ci/gitignore.nix"; flake = false; }; inputs.flake-utils.url = "github:numtide/flake-utils"; - outputs = {self, nixpkgs, flake-utils}: + outputs = {self, nixpkgs, flake-utils, gitignore}: let kitchenGen = import ./kitchen.nix; - gitignoreSrc = pkgs.callPackage inputs.gitignore { }; + gitignoreSrc = pkgs.callPackage gitignore { }; in flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; in