From 5f672c26651429aa9646bae0210a86f6802f0ddf Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 20 Jul 2024 14:48:04 +0100 Subject: [PATCH] Fix justfile for new nix-secrets location --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index d7e2e7f..658e4de 100644 --- a/justfile +++ b/justfile @@ -26,7 +26,7 @@ edit-sops: # update keys in secrets.yaml and push to remote update-sops-secrets: - cd ../nix-secrets && (\ + cd ~/.local/share/src/nix-secrets && (\ nix-shell -p sops --run "sops updatekeys -y secrets.yaml" && \ git add -u && (git commit -m "updated secrets" || true) && git push \ )