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"; type = "indirect";
id = "nixpkgs"; 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"; inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {self, nixpkgs, flake-utils}: outputs = {self, nixpkgs, flake-utils, gitignore}:
let let
kitchenGen = import ./kitchen.nix; kitchenGen = import ./kitchen.nix;
gitignoreSrc = pkgs.callPackage inputs.gitignore { }; gitignoreSrc = pkgs.callPackage gitignore { };
in in
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; }; in let pkgs = import nixpkgs { inherit system; }; in