nixos-config/config/services/yiff-stash.nix

34 lines
754 B
Nix
Raw Normal View History

2024-03-19 09:07:25 +00:00
{
config,
system,
nix-packages,
2024-03-19 09:26:13 +00:00
...
2024-03-19 09:07:25 +00:00
}: {
users.users.yiffstash = {
group = "yiffstash";
isSystemUser = true;
};
users.groups.yiffstash = {};
systemd.services.yiffstash = {
2024-03-19 09:26:13 +00:00
enable = true;
2024-03-19 09:07:25 +00:00
description = "Post yiff to telegram";
serviceConfig = {
ExecStart = "${nix-packages.packages.${system}.yiffstash}";
User = "yiffstash";
Group = "yiffstash";
Type = "oneshot";
};
};
systemd.timers.yiffstash = {
enable = true;
description = "Post yiff to telegram";
requires = ["yiffstash.service"];
2024-03-19 09:26:13 +00:00
wantedBy = ["multi-user.target"];
2024-03-19 09:07:25 +00:00
timerConfig = {
OnUnitActiveSec = "30m";
RandomizedDelaySec = "1h";
};
};
2024-03-19 09:26:13 +00:00
sops.secrets."caroline/yiffstash/bot-token" = {};
2024-03-19 09:07:25 +00:00
}