From afac391c9a1f161a3b7273a4208422b0b9018c39 Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Mon, 18 May 2026 19:26:45 +0200 Subject: [PATCH] cleanNix: deadnix: remove false verbose flag --- hostsModules/laptop/scripts/cleanNix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hostsModules/laptop/scripts/cleanNix.nix b/hostsModules/laptop/scripts/cleanNix.nix index 7ee031b..bd85ee9 100644 --- a/hostsModules/laptop/scripts/cleanNix.nix +++ b/hostsModules/laptop/scripts/cleanNix.nix @@ -28,7 +28,7 @@ pkgs.writeShellApplication { # the echos are to separate what each one is doing. Just for curiosity echo "deadnix scans your Nix code and removes or reports unused (dead) variables and bindings" - deadnix -vv --edit "$FLAKE_DIR" # removes unused code + deadnix --edit "$FLAKE_DIR" # removes unused code echo "--------------------------------------------------------------" echo "statix lints your Nix code to find stylistic issues, bad patterns, and potential mistakes." statix fix "$FLAKE_DIR" --verbose # check other linting issues