feat: add devshell and pre-commit

This commit is contained in:
Nydragon 2024-05-27 21:38:02 +09:00
parent f22f65f173
commit 17f31cc542
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
5 changed files with 32 additions and 2 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake;

3
.gitignore vendored
View file

@ -1,3 +1,2 @@
result result
.direnv

20
.pre-commit-config.yaml Normal file
View 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]

View file

@ -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; templates = import ./templates;
}; };
} }

View file

@ -0,0 +1 @@
{ }