Merge pull request 'feat: add timer for secret thing' (#38) into main
All checks were successful
/ check (push) Successful in 2m16s
All checks were successful
/ check (push) Successful in 2m16s
Reviewed-on: #38
This commit is contained in:
commit
59b281f984
1 changed files with 19 additions and 0 deletions
|
@ -38,4 +38,23 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
services.syncthing.enable = true;
|
services.syncthing.enable = true;
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
services.register-thing = {
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "oneshot";
|
||||||
|
User = "maintainer";
|
||||||
|
ExecStart = "/home/maintainer/register-thing/thing";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
timers.register-thing = {
|
||||||
|
wantedBy = ["timers.target"];
|
||||||
|
timerConfig = {
|
||||||
|
OnUnitActiveSec = "1m";
|
||||||
|
RandomizedDelaySec = "1m";
|
||||||
|
Unit = "register-thing";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue