Fix some nix stuff

This commit is contained in:
Jeremy Wall 2021-12-31 13:42:10 -05:00
parent 131acf12da
commit f343aad16a

View File

@ -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