diff options
| -rw-r--r-- | dev.nix | 13 | ||||
| -rw-r--r-- | justfile | 2 |
2 files changed, 10 insertions, 5 deletions
@@ -9,7 +9,7 @@ pre-commit = { settings.hooks = { actionlint.enable = true; - alejandra.enable = true; + ${config.formatter.pname}.enable = true; deadnix.enable = true; nil.enable = true; statix.enable = true; @@ -22,12 +22,17 @@ packages = with pkgs; [ actionlint - alejandra + + # nix + config.formatter deadnix - fzf - just nil statix + + # utils + fzf + just + jq ] ++ lib.optional stdenv.isLinux inputs'.agenix.packages.agenix; }; @@ -38,7 +38,7 @@ deploy-all: nix eval \ --json ".#apps.x86_64-linux" \ --apply builtins.attrNames \ - | , jq -c '.[]' | grep -v "dry-run" \ + | jq -c '.[]' | grep -v "dry-run" \ | while read -r c; do nix run ".#$c"; done [linux] |
