From 03c727769229906d6918e1a7a5ddad88b42f4e9c Mon Sep 17 00:00:00 2001 From: Paul Brinkmeier Date: Mon, 20 Nov 2023 21:45:13 +0100 Subject: [PATCH] Fix ionos-dyndns timer interval systemd uses min, not m for minutes. --- nix/modules/ionos-dyndns.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/modules/ionos-dyndns.nix b/nix/modules/ionos-dyndns.nix index 5994c16..ac2e8c1 100644 --- a/nix/modules/ionos-dyndns.nix +++ b/nix/modules/ionos-dyndns.nix @@ -73,7 +73,7 @@ in { }; interval = mkOption { type = types.str; - default = "14m"; + default = "14min"; description = "How often to run the update script in systemd.timers notation."; }; serviceName = mkOption {