mirror of
https://github.com/SebastianStork/nixos-installer.git
synced 2026-01-21 11:01:35 +01:00
19 lines
339 B
Makefile
19 lines
339 B
Makefile
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
|