Compare commits

..

No commits in common. "03c727769229906d6918e1a7a5ddad88b42f4e9c" and "f2f12a268878ed39c5c79bdd0c4d929bb89d12f6" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,7 @@ in {
}; };
interval = mkOption { interval = mkOption {
type = types.str; type = types.str;
default = "14min"; default = "14m";
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,6 +1,7 @@
{ 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";