1
1
Fork 0
nixos/options/custom/services/automatic-timezoned.nix
Myned d948aac059
automatic-timezoned: initial disabled service
Signed-off-by: Myned <dev@bjork.tech>
2024-12-21 13:43:54 -05:00

15 lines
323 B
Nix

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