1
1
Fork 0

automatic-timezoned: initial disabled service

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2024-12-21 13:43:54 -05:00
parent 5414953f67
commit d948aac059
Signed by: myned
GPG key ID: C7224454F7881A34
2 changed files with 16 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -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;