mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-22 19:40:14 -04:00
Fix some nix stuff
This commit is contained in:
parent
131acf12da
commit
f343aad16a
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user