From 6388edefd64fc32ff162447ff1b363d4afbebaf7 Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Mon, 18 May 2026 19:28:30 +0200 Subject: [PATCH] cleanNix: statix: remove false verbose flag --- hostsModules/laptop/scripts/cleanNix.nix | 2 +- modules/nixos/nixUtils.nix | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/hostsModules/laptop/scripts/cleanNix.nix b/hostsModules/laptop/scripts/cleanNix.nix index bd85ee9..d4af6fd 100644 --- a/hostsModules/laptop/scripts/cleanNix.nix +++ b/hostsModules/laptop/scripts/cleanNix.nix @@ -31,7 +31,7 @@ pkgs.writeShellApplication { 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 + statix fix "$FLAKE_DIR" # check other linting issues echo "--------------------------------------------------------------" echo "alejandra formats your Nix code consistently according to a strict, opinionated style." alejandra -v "$FLAKE_DIR" # formats the config diff --git a/modules/nixos/nixUtils.nix b/modules/nixos/nixUtils.nix index 696a3c1..41eca06 100644 --- a/modules/nixos/nixUtils.nix +++ b/modules/nixos/nixUtils.nix @@ -1,6 +1,5 @@ # some options are in ../../hostsModules/laptop/nixos/nixUtils.nix { - pkgs, pkgs-unstable, inputs, ...