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

33 lines
750 B
Nix
Raw Normal View History

2024-03-19 09:07:25 +00:00
{
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" = {};
};
}