summary refs log tree commit diff
path: root/nixos/modules/services/networking/tlsdated.nix
blob: f2d0c9f35c9cf90e09d6eb1e9122916aa6e1af7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{ config, lib, pkgs, ... }:

with lib;

let
  inherit (pkgs) coreutils tlsdate;

  cfg = config.services.tlsdated;
in

{

  ###### interface

  options = {

    services.tlsdated = {

      enable = mkOption {
        type = types.bool;
        default = false;
        description = ''
          Enable tlsdated daemon.
        '';
      };

      extraOptions = mkOption {
        type = types.string;
        description = ''
          Additional command line arguments to pass to tlsdated.
        '';
      };

      sources = mkOption {
        type = types.listOf (types.submodule {
          options = {
            host = mkOption {
              type = types.string;
              description = ''
                Remote hostname.
              '';
            };
            port = mkOption {
              type = types.int;
              description = ''
                Remote port.
              '';
            };
            proxy = mkOption {
              type = types.nullOr types.string;
              default = null;
              description = ''
                The proxy argument expects HTTP, SOCKS4A or SOCKS5 formatted as followed:

                 http://127.0.0.1:8118
                 socks4a://127.0.0.1:9050
                 socks5://127.0.0.1:9050

                The proxy support should not leak DNS requests and is suitable for use with Tor.
              '';
            };
          };
        });
        default = [
          {
            host = "www.ptb.de";
            port = 443;
            proxy = null;
          }
        ];
        description = ''
          You can list one or more sources to fetch time from.
        '';
      };

    };

  };

  ###### implementation

  config = mkIf cfg.enable {

    # Make tools such as tlsdate available in the system path
    environment.systemPackages = [ tlsdate ];

    systemd.services.tlsdated = {
      description = "tlsdated daemon";
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        # XXX because pkgs.tlsdate is compiled to run as nobody:nogroup, we
        # hard-code base-path to /tmp and use PrivateTmp.
        ExecStart = "${tlsdate}/bin/tlsdated -f ${pkgs.writeText "tlsdated.confg" ''
          base-path /tmp

          ${concatMapStrings (src: ''
          source
              host    ${src.host}
              port    ${toString src.port}
              proxy   ${if src.proxy == null then "none" else src.proxy}
          end
          '') cfg.sources}
        ''} ${cfg.extraOptions}";
        PrivateTmp = "yes";
      };
    };

  };

}