diff --git a/nix/run.nix b/nix/run.nix index 492724fd..a392e8aa 100644 --- a/nix/run.nix +++ b/nix/run.nix @@ -1,6 +1,7 @@ builtinStuff@{ pkgs, tools, isFlakes, pre-commit, git, runCommand, writeText, writeScript, lib, gitignore-nix-src }: { src +, settings ? { } , hooks ? { } , excludes ? [ ] , tools ? { } @@ -17,7 +18,7 @@ let { _module.args.pkgs = pkgs; _module.args.gitignore-nix-src = gitignore-nix-src; - inherit hooks excludes default_stages; + inherit hooks excludes default_stages settings; tools = builtinStuff.tools // tools; package = pre-commit; } // (if isFlakes