feat: add devshell and pre-commit
This commit is contained in:
parent
f22f65f173
commit
17f31cc542
5 changed files with 32 additions and 2 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
|||
use flake;
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
|||
result
|
||||
|
||||
|
||||
.direnv
|
||||
|
|
20
.pre-commit-config.yaml
Normal file
20
.pre-commit-config.yaml
Normal file
|
@ -0,0 +1,20 @@
|
|||
default_install_hook_types:
|
||||
- pre-commit
|
||||
- commit-msg
|
||||
|
||||
repos:
|
||||
- repo: https://github.com/gitleaks/gitleaks
|
||||
rev: v8.18.2
|
||||
hooks:
|
||||
- id: gitleaks
|
||||
stages: [commit]
|
||||
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: nixpkgs-fmt
|
||||
name: Check formatting
|
||||
entry: nixfmt
|
||||
language: system
|
||||
files: .*\.nix$
|
||||
args: [-c]
|
||||
stages: [commit]
|
|
@ -40,6 +40,15 @@
|
|||
};
|
||||
};
|
||||
|
||||
devShell."${system}" = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
pre-commit
|
||||
nixfmt-rfc-style
|
||||
];
|
||||
shellHook = ''
|
||||
${pkgs.pre-commit}/bin/pre-commit install -f
|
||||
'';
|
||||
};
|
||||
templates = import ./templates;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
{ }
|
Loading…
Add table
Reference in a new issue