nixos-config/config/services/yiff-stash.nix
2024-03-19 11:38:58 +01:00

34 lines
No EOL
754 B
Nix

{
config,
system,
nix-packages,
...
}: {
users.users.yiffstash = {
group = "yiffstash";
isSystemUser = true;
};
users.groups.yiffstash = {};
systemd.services.yiffstash = {
enable = true;
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"];
wantedBy = ["multi-user.target"];
timerConfig = {
OnUnitActiveSec = "30m";
RandomizedDelaySec = "1h";
};
};
sops.secrets."caroline/yiffstash/bot-token" = {};
}