diff --git a/options/custom/services/automatic-timezoned.nix b/options/custom/services/automatic-timezoned.nix new file mode 100644 index 0000000..2f768a7 --- /dev/null +++ b/options/custom/services/automatic-timezoned.nix @@ -0,0 +1,15 @@ +{ + config, + lib, + ... +}: +with lib; let + cfg = config.custom.services.automatic-timezoned; +in { + options.custom.services.automatic-timezoned.enable = mkOption {default = false;}; + + config = mkIf cfg.enable { + # https://github.com/maxbrunet/automatic-timezoned + services.automatic-timezoned.enable = true; + }; +} diff --git a/options/custom/services/default.nix b/options/custom/services/default.nix index 1e8081d..3b61e74 100644 --- a/options/custom/services/default.nix +++ b/options/custom/services/default.nix @@ -6,6 +6,7 @@ with lib; { config.custom.services = mkMerge [ (mkIf config.custom.default { + #// automatic-timezoned.enable = true; #// agenix.enable = true; #// netbird.enable = true; tailscale.enable = true;