From ad8aaf7a845ac6d46ffacc4ead0cb628d5a7db1e Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Sun, 1 Feb 2026 12:47:22 +0100 Subject: [PATCH] feat: update formatting. --- justfile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/justfile b/justfile index c8ff129..ac114a6 100644 --- a/justfile +++ b/justfile @@ -1,50 +1,50 @@ # Ssh into the server [group('ssh')] shell server: - ssh crony@{{server}} + ssh crony@{{ server }} # Forward a port from server to localhost [group('ssh')] forward port server: - ssh -N -L {{port}}:127.0.0.1:{{port}} root@{{server}} + ssh -N -L {{ port }}:127.0.0.1:{{ port }} root@{{ server }} # Deploy server nixos installation [group('deploy')] deploy server: - deploy ".#{{server}}" --magic-rollback=false -s + deploy ".#{{ server }}" --magic-rollback=false -s # Forcefully deploy without rollback [group('deploy')] deploy-force server: - deploy ".#{{server}}" --magic-rollback=false --auto-rollback=false -s + deploy ".#{{ server }}" --magic-rollback=false --auto-rollback=false -s # Deploy all servers available [group('deploy')] deploy-all: - deploy "." --magic-rollback=false -s + deploy "." --magic-rollback=false -s # Reboot the server [group('ssh')] reboot server: - ssh -t root@{{server}} "reboot" + ssh -t root@{{ server }} "reboot" # Update current nixos install [group('nixos')] update: - nh os test -u -a && nh os switch + nh os test -u -a && nh os switch # Test current config [group('nixos')] test: - nh os test -a + nh os test -a # Switch to current config [group('nixos')] switch: - nh os switch -a + nh os switch -a # Commit flake.lock update or modifications [group('git')] commit-lock: - git add flake.lock - git commit -m "feat: update flake.lock" + git add flake.lock + git commit -m "feat: update flake.lock"