We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The flake-parts template currently suggests using it as a flake input:
git-hooks.nix/template/flake.nix
Lines 6 to 7 in cd1af27
This brings in a bunch of transitive inputs that the user does not strictly need, forcing setting up of follows like:
follows
git-hooks.inputs = { nixpkgs.follows = "nixpkgs"; nixpkgs-stable.follows = "nixpkgs"; }; gitignore.follows = "git-hooks/gitignore"; gitignore.inputs.nixpkgs.follows = "nixpkgs"; gitignore.inputs.flake-compat = { };
Therefore, should we just change the template to reference git-hooks as a non-flake input? viz.:
git-hooks.url = "github:cachix/git-hooks.nix"; git-hooks.flake = false; ... # In imports (inputs.git-hooks + /flake-module.nix)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The flake-parts template currently suggests using it as a flake input:
git-hooks.nix/template/flake.nix
Lines 6 to 7 in cd1af27
This brings in a bunch of transitive inputs that the user does not strictly need, forcing setting up of
follows
like:Therefore, should we just change the template to reference git-hooks as a non-flake input? viz.:
The text was updated successfully, but these errors were encountered: