nixos/services.automatic-timezoned: remove `with lib;`

+4 -7
+4 -7
nixos/modules/services/system/automatic-timezoned.nix
··· 4 4 pkgs, 5 5 ... 6 6 }: 7 - 8 - with lib; 9 - 10 7 let 11 8 cfg = config.services.automatic-timezoned; 12 9 in 13 10 { 14 11 options = { 15 12 services.automatic-timezoned = { 16 - enable = mkOption { 17 - type = types.bool; 13 + enable = lib.mkOption { 14 + type = lib.types.bool; 18 15 default = false; 19 16 description = '' 20 17 Enable `automatic-timezoned`, simple daemon for keeping the system ··· 28 25 to make the choice deliberate. An error will be presented otherwise. 29 26 ''; 30 27 }; 31 - package = mkPackageOption pkgs "automatic-timezoned" { }; 28 + package = lib.mkPackageOption pkgs "automatic-timezoned" { }; 32 29 }; 33 30 }; 34 31 35 - config = mkIf cfg.enable { 32 + config = lib.mkIf cfg.enable { 36 33 # This will give users an error if they have set an explicit time 37 34 # zone, rather than having the service silently override it. 38 35 time.timeZone = null;