vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / misc / tzupdate.nix
blob9e979bb4767546f3d60bb71e1a6a69c2118361e3
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.tzupdate;
7 in {
8   options.services.tzupdate = {
9     enable = mkOption {
10       type = types.bool;
11       default = false;
12       description = ''
13         Enable the tzupdate timezone updating service. This provides
14         a one-shot service which can be activated with systemctl to
15         update the timezone.
16       '';
17     };
18   };
20   config = mkIf cfg.enable {
21     # We need to have imperative time zone management for this to work.
22     # This will give users an error if they have set an explicit time
23     # zone, which is better than silently overriding it.
24     time.timeZone = null;
26     # We provide a one-shot service which can be manually run. We could
27     # provide a service that runs on startup, but it's tricky to get
28     # a service to run after you have *internet* access.
29     systemd.services.tzupdate = {
30       description = "tzupdate timezone update service";
31       wants = [ "network-online.target" ];
32       after = [ "network-online.target" ];
33       script = ''
34         timedatectl set-timezone $(${lib.getExe pkgs.tzupdate} --print-only)
35       '';
37       serviceConfig = {
38         Type = "oneshot";
39       };
40     };
41   };
43   meta.maintainers = with lib.maintainers; [ doronbehar ];