From c85c6619b7a5f66164ddbb15d49159f4dbbe6bcc Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 15 Feb 2026 00:31:26 +0100 Subject: [PATCH] just: Group remaining commands into `utility` group --- justfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index e0b05a0..8c2b98f 100644 --- a/justfile +++ b/justfile @@ -1,23 +1,29 @@ set quiet := true -list: +_list: just --list --unsorted +[group('utility')] update: nix flake update --commit-lock-file +[group('utility')] fmt: nix fmt +[group('utility')] check: nix flake check +[group('utility')] check-lite: nix flake check --no-build +[group('utility')] repair: nix-store --verify --check-contents --repair +[group('utility')] repl host='$(hostname)': nix repl .#allHosts.{{ host }}