anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / nixos / modules / services / development / distccd.nix
blob7eb9789b5c38c3a24e1b18a7eefe15001a2f4bc0
1 { config, lib, pkgs, ... }:
2 let
3   cfg = config.services.distccd;
4 in
6   options = {
7     services.distccd = {
8       enable = lib.mkEnableOption "distccd, a distributed C/C++ compiler";
10       allowedClients = lib.mkOption {
11         type = lib.types.listOf lib.types.str;
12         default = [ "127.0.0.1" ];
13         example = [ "127.0.0.1" "192.168.0.0/24" "10.0.0.0/24" ];
14         description = ''
15           Client IPs which are allowed to connect to distccd in CIDR notation.
17           Anyone who can connect to the distccd server can run arbitrary
18           commands on that system as the distcc user, therefore you should use
19           this judiciously.
20         '';
21       };
23       jobTimeout = lib.mkOption {
24         type = lib.types.nullOr lib.types.int;
25         default = null;
26         description = ''
27           Maximum duration, in seconds, of a single compilation request.
28         '';
29       };
31       logLevel = lib.mkOption {
32         type = lib.types.nullOr (lib.types.enum [ "critical" "error" "warning" "notice" "info" "debug" ]);
33         default = "warning";
34         description = ''
35           Set the minimum severity of error that will be included in the log
36           file. Useful if you only want to see error messages rather than an
37           entry for each connection.
38         '';
39       };
41       maxJobs = lib.mkOption {
42         type = lib.types.nullOr lib.types.int;
43         default = null;
44         description = ''
45           Maximum number of tasks distccd should execute at lib.any time.
46         '';
47       };
50       nice = lib.mkOption {
51         type = lib.types.nullOr lib.types.int;
52         default = null;
53         description = ''
54           Niceness of the compilation tasks.
55         '';
56       };
58       openFirewall = lib.mkOption {
59         type = lib.types.bool;
60         default = false;
61         description = ''
62           Opens the specified TCP port for distcc.
63         '';
64       };
66       package = lib.mkPackageOption pkgs "distcc" { };
68       port = lib.mkOption {
69         type = lib.types.port;
70         default = 3632;
71         description = ''
72           The TCP port which distccd will listen on.
73         '';
74       };
76       stats = {
77         enable = lib.mkEnableOption "statistics reporting via HTTP server";
78         port = lib.mkOption {
79           type = lib.types.port;
80           default = 3633;
81           description = ''
82             The TCP port which the distccd statistics HTTP server will listen
83             on.
84           '';
85         };
86       };
88       zeroconf = lib.mkOption {
89         type = lib.types.bool;
90         default = false;
91         description = ''
92           Whether to register via mDNS/DNS-SD
93         '';
94       };
95     };
96   };
98   config = lib.mkIf cfg.enable {
99     networking.firewall = lib.mkIf cfg.openFirewall {
100       allowedTCPPorts = [ cfg.port ]
101         ++ lib.optionals cfg.stats.enable [ cfg.stats.port ];
102     };
104     systemd.services.distccd = {
105       after = [ "network.target" ];
106       wantedBy = [ "multi-user.target" ];
108       description = "Distributed C, C++ and Objective-C compiler";
109       documentation = [ "man:distccd(1)" ];
111       serviceConfig = {
112         User = "distcc";
113         Group = "distcc";
114         # FIXME: I'd love to get rid of `--enable-tcp-insecure` here, but I'm
115         # not sure how I'm supposed to get distccd to "accept" running a binary
116         # (the compiler) that's outside of /usr/lib.
117         ExecStart = pkgs.writeShellScript "start-distccd" ''
118           export PATH="${pkgs.distccMasquerade}/bin"
119           ${cfg.package}/bin/distccd \
120             --no-detach \
121             --daemon \
122             --enable-tcp-insecure \
123             --port ${toString cfg.port} \
124             ${lib.optionalString (cfg.jobTimeout != null) "--job-lifetime ${toString cfg.jobTimeout}"} \
125             ${lib.optionalString (cfg.logLevel != null) "--log-level ${cfg.logLevel}"} \
126             ${lib.optionalString (cfg.maxJobs != null) "--jobs ${toString cfg.maxJobs}"} \
127             ${lib.optionalString (cfg.nice != null) "--nice ${toString cfg.nice}"} \
128             ${lib.optionalString cfg.stats.enable "--stats"} \
129             ${lib.optionalString cfg.stats.enable "--stats-port ${toString cfg.stats.port}"} \
130             ${lib.optionalString cfg.zeroconf "--zeroconf"} \
131             ${lib.concatMapStrings (c: "--allow ${c} ") cfg.allowedClients}
132         '';
133       };
134     };
136     users = {
137       groups.distcc.gid = config.ids.gids.distcc;
138       users.distcc = {
139         description = "distccd user";
140         group = "distcc";
141         uid = config.ids.uids.distcc;
142       };
143     };
144   };