dotfiles/modules/nixos/services/identity.nix

21 lines
484 B
Nix
Raw Normal View History

2024-03-24 17:16:20 +00:00
{ config, ... }: {
# Wait for secret to be placed on the machine
systemd.services.wait-for-identity = {
description = "Wait until identity file exists on the machine";
wantedBy = [ "multi-user.target" ];
serviceConfig = { Type = "oneshot"; };
script = ''
while true; do
if [ -f ${config.identityFile} ]; then
echo "Identity file found."
exit 0
fi
sleep 5
2024-03-24 18:55:17 +00:00
exit 0
2024-03-24 17:16:20 +00:00
done
'';
};
}