summaryrefslogtreecommitdiff
path: root/repo/checks.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-28 06:50:30 -0500
committerseth <[email protected]>2024-02-28 06:50:30 -0500
commit62621080f9f97f5dffa889daf1dbc7257ba2cda7 (patch)
tree2d43ba122f05a722d25d15274492e666f514756b /repo/checks.nix
parentc8ce9e7c75b65176a1e018d37948a72e55e8d4d1 (diff)
move repo stuff to root flake.nix
Diffstat (limited to 'repo/checks.nix')
-rw-r--r--repo/checks.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/repo/checks.nix b/repo/checks.nix
deleted file mode 100644
index cf2b732..0000000
--- a/repo/checks.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- perSystem = {self', ...}: {
- pre-commit = {
- settings.hooks = {
- actionlint.enable = true;
- ${self'.formatter.pname}.enable = true;
- deadnix.enable = true;
- nil.enable = true;
- statix.enable = true;
- };
- };
- };
-}