Compare commits

..

2 Commits

Author SHA1 Message Date
03c7277692 Fix ionos-dyndns timer interval
All checks were successful
Check / Lint Ansible Files (push) Successful in 2m29s
systemd uses min, not m for minutes.
2023-11-20 21:45:13 +01:00
de16857570 Remove unused leftover variable 2023-11-19 03:38:50 +01:00
2 changed files with 1 additions and 2 deletions

View File

@ -73,7 +73,7 @@ in {
}; };
interval = mkOption { interval = mkOption {
type = types.str; type = types.str;
default = "14m"; default = "14min";
description = "How often to run the update script in systemd.timers notation."; description = "How often to run the update script in systemd.timers notation.";
}; };
serviceName = mkOption { serviceName = mkOption {

View File

@ -1,7 +1,6 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
let let
ionos-dyndns = pkgs.callPackage ../packages/ionos-dyndns.nix {};
spigot-server = pkgs.callPackage ../packages/spigot-server.nix {}; spigot-server = pkgs.callPackage ../packages/spigot-server.nix {};
cfg = config.services.spigot-server; cfg = config.services.spigot-server;
StateDirectory = "spigot-server"; StateDirectory = "spigot-server";