This commit is contained in:
2026-01-15 18:53:34 -06:00
parent 340ea873ce
commit b5b1e07f3a

View File

@@ -1,12 +1,12 @@
{ config, lib, pkgs, ... }: {
options.sysconfig.services.dynamicDNS.enable = lib.options.mkOption {
options.sysconfig.services.dynamicDNS.enable = with lib; mkOption {
type = lib.types.bool;
type = with types; bool;
default = false;
};
config = lib.mkIf config.sysconfig.services.dynamicDNS {
config = lib.mkIf config.sysconfig.services.dynamicDNS.enable {
systemd.timers.dynamicDNS = {