summaryrefslogtreecommitdiff
path: root/dev.nix
diff options
context:
space:
mode:
Diffstat (limited to 'dev.nix')
-rw-r--r--dev.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev.nix b/dev.nix
deleted file mode 100644
index 5398d36..0000000
--- a/dev.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- perSystem = {
- config,
- pkgs,
- ...
- }: {
- devShells.default = pkgs.mkShell {
- shellHook = config.pre-commit.installationScript;
-
- packages = with pkgs; [
- actionlint
- alejandra
- deadnix
- nil
- statix
- stylua
- ];
- };
-
- formatter = pkgs.alejandra;
-
- pre-commit.settings.hooks = {
- actionlint.enable = true;
- alejandra.enable = true;
- deadnix.enable = true;
- nil.enable = true;
- statix.enable = true;
- stylua.enable = true;
- };
- };
-}