feat: inital public commit

This commit is contained in:
2025-08-15 19:54:31 -04:00
commit 00315a990a
55 changed files with 2527 additions and 0 deletions

31
justfile Normal file
View File

@@ -0,0 +1,31 @@
default:
@just --list
list:
@just --list
add-secrets:
git -C secrets add .
rebuild:
just add-secrets
git add .
sudo nixos-rebuild switch --flake '.?submodules=1#max'
rebuild-ark:
just add-secrets
git add .
nixos-rebuild --flake '.?submodules=1#ark' --build-host admin@100.98.252.15 --target-host admin@100.98.252.15 --use-remote-sudo --fast switch
push-secrets:
just add-secrets
git -C secrets commit
git -C secrets push
push:
git add .
git commit
git push