This commit is contained in:
Robin Appelman 2024-08-03 21:07:23 +02:00
commit 703c69f988
2 changed files with 1 additions and 2 deletions

View file

@ -49,9 +49,9 @@ in {
config = mkIf cfg.enable {
systemd.services."rss-webhook-trigger" = {
wantedBy = ["multi-user.target"];
script = "${cfg.package}/bin/rss-webhook-trigger ${configFile}";
serviceConfig = {
ExecStart = "${cfg.package}/bin/rss-webhook-trigger ${configFile}";
Restart = "on-failure";
DynamicUser = true;
PrivateTmp = true;

View file

@ -40,5 +40,4 @@ pub struct HubTag {
pub id: u64,
#[serde(with = "time::serde::rfc3339")]
pub last_updated: OffsetDateTime,
pub name: String,
}