From 17e2f2a10b15c31ced72f619125889d62b108139 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Thu, 2 Oct 2025 13:36:41 -0500 Subject: [PATCH] justfile | fix oldschool to talke hostname + add new targe fixme to scan for said tag --- justfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index e7c552e..53fabac 100644 --- a/justfile +++ b/justfile @@ -116,9 +116,9 @@ ci: @rm -f nixos-switch.log # Go old school -oldschool: +oldschool hostname=(HOSTNAME): @rm -f nixos-switch.log - @doas nixos-rebuild switch --impure --flake .#{{HOSTNAME}} + @doas nixos-rebuild switch --impure --flake .#{{hostname}} # Reboot on hostname reboot hostname=(HOSTNAME): @@ -127,3 +127,7 @@ reboot hostname=(HOSTNAME): # Format the code format: @nixfmt . &> nixos-switch.log || ( cat nixos-switch.log && false ) + +# Find areas which need to be fixed. +fixme: + @find . -name '*nix' -exec grep -HE 'TODO|FIXME' {} \;