summaryrefslogtreecommitdiff
path: root/dev.nix
diff options
context:
space:
mode:
Diffstat (limited to 'dev.nix')
-rw-r--r--dev.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev.nix b/dev.nix
deleted file mode 100644
index 7ac4683..0000000
--- a/dev.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- perSystem = {
- lib,
- pkgs,
- config,
- inputs',
- ...
- }: {
- pre-commit = {
- settings.hooks = {
- actionlint.enable = true;
- ${config.formatter.pname}.enable = true;
- deadnix.enable = true;
- nil.enable = true;
- statix.enable = true;
- };
- };
-
- devShells = {
- default = pkgs.mkShell {
- shellHook = config.pre-commit.installationScript;
- packages = with pkgs;
- [
- actionlint
-
- # nix
- config.formatter
- deadnix
- nil
- statix
-
- # utils
- deploy-rs
- fzf
- just
- jq
- opentofu
-
- # ci
- nix-eval-jobs
- ]
- ++ lib.optional stdenv.isLinux inputs'.agenix.packages.agenix;
- };
- };
-
- formatter = pkgs.alejandra;
- };
-}