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";
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user