diff --git a/modules/age.nix b/modules/age.nix index 8b847f3..acae79f 100644 --- a/modules/age.nix +++ b/modules/age.nix @@ -68,7 +68,6 @@ let ''; installSecret = secretType: '' - ( ${setTruePath secretType} echo "decrypting '${secretType.file}' to '$_truePath'..." TMP_FILE="$_truePath.tmp" @@ -99,7 +98,6 @@ let ${optionalString secretType.symlink '' [ "${secretType.path}" != "${cfg.secretsDir}/${secretType.name}" ] && ln -sfT "${cfg.secretsDir}/${secretType.name}" "${secretType.path}" ''} - ) & ''; testIdentities = map (path: '' @@ -122,7 +120,6 @@ let [ "echo '[agenix] decrypting secrets...'" ] ++ testIdentities ++ (map installSecret (builtins.attrValues cfg.secrets)) - ++ [ "wait" ] ++ [ cleanupAndLink ] );