mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 00:52:56 +00:00
20 lines
467 B
Nix
20 lines
467 B
Nix
|
{ 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
|
||
|
done
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
}
|