fix bad pkgs call

This commit is contained in:
Jeremy Wall 2021-12-31 13:45:11 -05:00
parent f343aad16a
commit 58ff0bb2f7

View File

@ -12,14 +12,13 @@
outputs = {self, nixpkgs, flake-utils, gitignore}:
let
kitchenGen = import ./kitchen.nix;
gitignoreSrc = pkgs.callPackage gitignore { };
in
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; }; in
{
defaultPackage = (kitchenGen {
nixpkgs = pkgs;
inherit gitignoreSrc;
gitignoreSrc = pkgs.callPackage gitignore { };
});
}
);