This commit is contained in:
SebastianStork 2025-03-11 00:38:47 +01:00
commit b2aca0a845
11 changed files with 327 additions and 0 deletions

19
justfile Normal file
View file

@ -0,0 +1,19 @@
set quiet := true
default:
just --list --unsorted
generate image: decrypt && encrypt
-nix build path:.#{{ image }}
decrypt:
sops decrypt --extract '["tailscale-auth-key"]' --output tailscale-auth-key.dec secrets.yaml
encrypt:
rm tailscale-auth-key.dec
update:
nix flake update --commit-lock-file
fmt:
nix fmt