1
1
Fork 0
nixos/options/custom/services/automatic-timezoned.nix

16 lines
323 B
Nix
Raw Normal View History

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