Merge pull request 'feat: add timer for secret thing' () into main

Reviewed-on: 
This commit is contained in:
buffet 2024-06-17 10:47:49 +00:00
commit 59b281f984

View file

@ -38,4 +38,23 @@
];
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";
};
};
};
}