]> git.immae.eu Git - perso/Immae/Config/Nix.git/blame - modules/private/environment.nix
Add CAA to dns
[perso/Immae/Config/Nix.git] / modules / private / environment.nix
CommitLineData
619e4f46 1{ config, lib, name, ... }:
ab8f306d
IB
2with lib;
3with types;
4with lists;
5let
6 ldapOptions = {
7 base = mkOption { description = "Base of the LDAP tree"; type = str; };
8 host = mkOption { description = "Host to access LDAP"; type = str; };
9 root_dn = mkOption { description = "DN of the root user"; type = str; };
10 root_pw = mkOption { description = "Hashed password of the root user"; type = str; };
11 replication_dn = mkOption { description = "DN of the user allowed to replicate the LDAP directory"; type = str; };
12 replication_pw = mkOption { description = "Password of the user allowed to replicate the LDAP directory"; type = str; };
13 };
14 mkLdapOptions = name: more: mkOption {
15 description = "${name} LDAP configuration";
16 type = submodule {
17 options = ldapOptions // {
18 dn = mkOption { description = "DN of the ${name} user"; type = str; };
19 password = mkOption { description = "password of the ${name} user"; type = str; };
20 filter = mkOption { description = "Filter for ${name} users"; type = str; default = ""; };
21 } // more;
22 };
23 };
24 mysqlOptions = {
25 host = mkOption { description = "Host to access Mysql"; type = str; };
619e4f46 26 remoteHost = mkOption { description = "Host to access Mysql from outside"; type = str; };
ab8f306d
IB
27 port = mkOption { description = "Port to access Mysql"; type = str; };
28 socket = mkOption { description = "Socket to access Mysql"; type = path; };
29 systemUsers = mkOption {
30 description = "Attrs of user-passwords allowed to access mysql";
31 type = attrsOf str;
32 };
33 pam = mkOption {
34 description = "PAM configuration for mysql";
35 type = submodule {
36 options = {
37 dn = mkOption { description = "DN to connect as to check users"; type = str; };
38 password = mkOption { description = "DN password to connect as to check users"; type = str; };
39 filter = mkOption { description = "filter to match users"; type = str; };
40 };
41 };
42 };
43 };
87a8bffd 44 mkMysqlOptions = name: more: mkOption {
ab8f306d
IB
45 description = "${name} mysql configuration";
46 type = submodule {
47 options = mysqlOptions // {
48 database = mkOption { description = "${name} database"; type = str; };
49 user = mkOption { description = "${name} user"; type = str; };
50 password = mkOption { description = "mysql password of the ${name} user"; type = str; };
87a8bffd 51 } // more;
ab8f306d
IB
52 };
53 };
54 psqlOptions = {
55 host = mkOption { description = "Host to access Postgresql"; type = str; };
56 port = mkOption { description = "Port to access Postgresql"; type = str; };
57 socket = mkOption { description = "Socket to access Postgresql"; type = path; };
58 pam = mkOption {
59 description = "PAM configuration for psql";
60 type = submodule {
61 options = {
62 dn = mkOption { description = "DN to connect as to check users"; type = str; };
63 password = mkOption { description = "DN password to connect as to check users"; type = str; };
64 filter = mkOption { description = "filter to match users"; type = str; };
65 };
66 };
67 };
68 };
69 mkPsqlOptions = name: mkOption {
70 description = "${name} psql configuration";
71 type = submodule {
72 options = psqlOptions // {
73 database = mkOption { description = "${name} database"; type = str; };
74 schema = mkOption { description = "${name} schema"; type = nullOr str; default = null; };
75 user = mkOption { description = "${name} user"; type = str; };
76 password = mkOption { description = "psql password of the ${name} user"; type = str; };
77 };
78 };
79 };
80 redisOptions = {
81 host = mkOption { description = "Host to access Redis"; type = str; };
82 port = mkOption { description = "Port to access Redis"; type = str; };
83 socket = mkOption { description = "Socket to access Redis"; type = path; };
84 dbs = mkOption {
85 description = "Attrs of db number. Each number should be unique to avoid collision!";
86 type = attrsOf str;
87 };
88 spiped_key = mkOption {
89 type = str;
90 description = ''
91 Key to use with spiped to make a secure channel to replication
92 '';
93 };
94 predixy = mkOption {
95 description = "Predixy configuration. Unused yet";
96 type = submodule {
97 options = {
98 read = mkOption { type = str; description = "Read password"; };
99 };
100 };
101 };
102 };
103 mkRedisOptions = name: mkOption {
104 description = "${name} redis configuration";
105 type = submodule {
106 options = redisOptions // {
107 db = mkOption { description = "${name} database"; type = str; };
108 };
109 };
110 };
6338573a
IB
111 smtpOptions = {
112 host = mkOption { description = "Host to access SMTP"; type = str; };
113 port = mkOption { description = "Port to access SMTP"; type = str; };
114 };
115 mkSmtpOptions = name: mkOption {
116 description = "${name} smtp configuration";
117 type = submodule {
118 options = smtpOptions // {
119 email = mkOption { description = "${name} email"; type = str; };
120 password = mkOption { description = "SMTP password of the ${name} user"; type = str; };
121 };
122 };
123 };
619e4f46
IB
124 hostEnv = submodule {
125 options = {
126 fqdn = mkOption {
127 description = "Host FQDN";
128 type = str;
129 };
8a304ef4
IB
130 users = mkOption {
131 type = unspecified;
132 default = pkgs: [];
133 description = ''
134 Sublist of users from realUsers. Function that takes pkgs as
135 argument and gives an array as a result
136 '';
137 };
619e4f46
IB
138 emails = mkOption {
139 default = [];
140 description = "List of e-mails that the server can be a sender of";
141 type = listOf str;
142 };
143 ldap = mkOption {
144 description = ''
145 LDAP credentials for the host
146 '';
147 type = submodule {
148 options = {
5400b9b6
IB
149 password = mkOption { type = str; description = "Password for the LDAP connection"; };
150 dn = mkOption { type = str; description = "DN for the LDAP connection"; };
619e4f46
IB
151 };
152 };
153 };
154 mx = mkOption {
155 description = "subdomain and priority for MX server";
156 default = { enable = false; };
157 type = submodule {
158 options = {
159 enable = mkEnableOption "Enable MX";
160 subdomain = mkOption { type = nullOr str; description = "Subdomain name (mx-*)"; };
161 priority = mkOption { type = nullOr str; description = "Priority"; };
162 };
163 };
164 };
165 ips = mkOption {
166 description = ''
167 attrs of ip4/ip6 grouped by section
168 '';
169 type = attrsOf (submodule {
170 options = {
171 ip4 = mkOption {
5400b9b6 172 type = str;
619e4f46
IB
173 description = ''
174 ip4 address of the host
175 '';
176 };
177 ip6 = mkOption {
5400b9b6 178 type = listOf str;
619e4f46
IB
179 default = [];
180 description = ''
181 ip6 addresses of the host
182 '';
183 };
184 };
185 });
186 };
187 };
188 };
ab8f306d
IB
189in
190{
191 options.myEnv = {
192 servers = mkOption {
193 description = ''
194 Attrs of servers information in the cluster (not necessarily handled by nixops)
195 '';
196 default = {};
619e4f46 197 type = attrsOf hostEnv;
ab8f306d
IB
198 };
199 hetznerCloud = mkOption {
200 description = ''
201 Hetzner Cloud credential information
202 '';
203 type = submodule {
204 options = {
205 authToken = mkOption {
206 type = str;
207 description = ''
208 The API auth token.
209 '';
210 };
211 };
212 };
213 };
214 hetzner = mkOption {
215 description = ''
216 Hetzner credential information
217 '';
218 type = submodule {
219 options = {
220 user = mkOption { type = str; description = "User"; };
221 pass = mkOption { type = str; description = "Password"; };
222 };
223 };
224 };
225 sshd = mkOption {
226 description = ''
227 sshd service credential information
228 '';
229 type = submodule {
230 options = {
231 ldap = mkOption {
232 description = ''
233 LDAP credentials for cn=ssh,ou=services,dc=immae,dc=eu dn
234 '';
235 type = submodule {
236 options = {
237 password = mkOption { description = "Password"; type = str; };
238 };
239 };
240 };
241 };
242 };
243 };
244 ports = mkOption {
245 description = ''
246 non-standard reserved ports. Must be unique!
247 '';
248 type = attrsOf port;
249 default = {};
250 apply = let
251 noDupl = x: builtins.length (builtins.attrValues x) == builtins.length (unique (builtins.attrValues x));
252 in
253 x: if isAttrs x && noDupl x then x else throw "Non unique values for ports";
254 };
255 httpd = mkOption {
256 description = ''
257 httpd service credential information
258 '';
259 type = submodule {
260 options = {
261 ldap = mkOption {
262 description = ''
263 LDAP credentials for cn=httpd,ou=services,dc=immae,dc=eu dn
264 '';
265 type = submodule {
266 options = {
267 password = mkOption { description = "Password"; type = str; };
268 };
269 };
270 };
271 };
272 };
273 };
6338573a
IB
274 smtp = mkOption {
275 type = submodule { options = smtpOptions; };
276 description = "SMTP configuration";
277 };
ab8f306d
IB
278 ldap = mkOption {
279 description = ''
280 LDAP server configuration
281 '';
282 type = submodule {
283 options = ldapOptions;
284 };
285 };
286 databases = mkOption {
287 description = "Databases configuration";
288 type = submodule {
289 options = {
290 mysql = mkOption {
291 type = submodule { options = mysqlOptions; };
292 description = "Mysql configuration";
293 };
294 redis = mkOption {
295 type = submodule { options = redisOptions; };
296 description = "Redis configuration";
297 };
298 postgresql = mkOption {
299 type = submodule { options = psqlOptions; };
300 description = "Postgresql configuration";
301 };
302 };
303 };
304 };
305 jabber = mkOption {
306 description = "Jabber configuration";
307 type = submodule {
308 options = {
5b53d86f 309 postfix_user_filter = mkOption { type = str; description = "Postfix filter to get xmpp users"; };
ab8f306d
IB
310 ldap = mkLdapOptions "Jabber" {};
311 postgresql = mkPsqlOptions "Jabber";
312 };
313 };
314 };
8a304ef4
IB
315 realUsers = mkOption {
316 description = ''
317 Attrset of function taking pkgs as argument.
318 Real users settings, should provide a subattr of users.users.<name>
319 with at least: name, (hashed)Password, shell
320 '';
321 type = attrsOf unspecified;
322 };
ab8f306d
IB
323 users = mkOption {
324 description = "System and regular users uid/gid";
325 type = attrsOf (submodule {
326 options = {
327 uid = mkOption {
328 description = "user uid";
329 type = int;
330 };
331 gid = mkOption {
332 description = "user gid";
333 type = int;
334 };
335 };
336 });
337 };
338 dns = mkOption {
339 description = "DNS configuration";
340 type = submodule {
341 options = {
342 soa = mkOption {
343 description = "SOA information";
344 type = submodule {
345 options = {
346 serial = mkOption {
347 description = "Serial number. Should be incremented at each change and unique";
348 type = str;
349 };
350 refresh = mkOption {
351 description = "Refresh time";
352 type = str;
353 };
354 retry = mkOption {
355 description = "Retry time";
356 type = str;
357 };
358 expire = mkOption {
359 description = "Expire time";
360 type = str;
361 };
362 ttl = mkOption {
363 description = "Default TTL time";
364 type = str;
365 };
366 email = mkOption {
367 description = "hostmaster e-mail";
368 type = str;
369 };
370 primary = mkOption {
371 description = "Primary NS";
372 type = str;
373 };
374 };
375 };
376 };
377 ns = mkOption {
378 description = "Attrs of NS servers group";
379 example = {
380 foo = {
381 "ns1.foo.com" = [ "198.51.100.10" "2001:db8:abcd::1" ];
382 "ns2.foo.com" = [ "198.51.100.15" "2001:db8:1234::1" ];
383 };
384 };
385 type = attrsOf (attrsOf (listOf str));
386 };
387 slaveZones = mkOption {
388 description = "List of slave zones";
389 type = listOf (submodule {
390 options = {
391 name = mkOption { type = str; description = "zone name"; };
392 masters = mkOption {
393 description = "NS master groups of this zone";
394 type = listOf str;
395 };
396 };
397 });
398 };
399 masterZones = mkOption {
400 description = "List of master zones";
401 type = listOf (submodule {
402 options = {
403 name = mkOption { type = str; description = "zone name"; };
68ff82c6 404 withCAA = mkOption { type = nullOr str; description = "CAA entry"; default = null; };
ab8f306d
IB
405 slaves = mkOption {
406 description = "NS slave groups of this zone";
407 type = listOf str;
408 };
409 ns = mkOption {
410 description = "groups names that should have their NS entries listed here";
411 type = listOf str;
412 };
413 extra = mkOption {
414 description = "Extra zone configuration for bind";
415 example = ''
416 notify yes;
417 '';
418 type = lines;
419 };
420 entries = mkOption { type = lines; description = "Regular entries of the NS zone"; };
421 withEmail = mkOption {
422 description = "List of domains that should have mail entries (MX, dkim, SPF, ...)";
423 default = [];
424 type = listOf (submodule {
425 options = {
426 domain = mkOption { type = str; description = "Which subdomain is concerned"; };
427 send = mkOption { type = bool; description = "Whether there can be e-mails originating from the subdomain"; };
428 receive = mkOption { type = bool; description = "Whether there can be e-mails arriving to the subdomain"; };
429 };
430 });
431 };
432 };
433 });
434 };
435 };
436 };
437 };
438 backup = mkOption {
439 description = ''
440 Remote backup with duplicity
441 '';
442 type = submodule {
443 options = {
444 password = mkOption { type = str; description = "Password for encrypting files"; };
5a61f6ad
IB
445 remotes = mkOption {
446 type = attrsOf (submodule {
447 options = {
448 remote = mkOption {
449 type = unspecified;
450 example = literalExample ''
451 bucket: "s3://some_host/${bucket}";
452 '';
453 description = ''
454 Function.
455 Takes a bucket name as argument and returns a url
456 '';
457 };
458 accessKeyId = mkOption { type = str; description = "Remote access-key"; };
459 secretAccessKey = mkOption { type = str; description = "Remote access secret"; };
460 };
461 });
462 };
ab8f306d
IB
463 };
464 };
465 };
5dda316b
IB
466 zrepl_backup = mkOption {
467 type = submodule {
468 options = {
469 ssh_key = mkOption {
470 description = "SSH key information";
471 type = submodule {
472 options = {
473 public = mkOption { type = str; description = "Public part of the key"; };
474 private = mkOption { type = lines; description = "Private part of the key"; };
475 };
476 };
477 };
478 mysql = mkMysqlOptions "Zrepl" {};
479 };
480 };
481 };
ab8f306d
IB
482 rsync_backup = mkOption {
483 description =''
484 Rsync backup configuration from controlled host
485 '';
486 type = submodule {
487 options = {
ab8f306d
IB
488 ssh_key = mkOption {
489 description = "SSH key information";
490 type = submodule {
491 options = {
492 public = mkOption { type = str; description = "Public part of the key"; };
493 private = mkOption { type = lines; description = "Private part of the key"; };
494 };
495 };
496 };
497 profiles = mkOption {
498 description = "Attrs of profiles to backup";
499 type = attrsOf (submodule {
500 options = {
501 keep = mkOption { type = int; description = "Number of backups to keep"; };
46b7e627 502 check_command = mkOption { type = str; description = "command to check if backup needs to be done"; default = "backup"; };
ab8f306d
IB
503 login = mkOption { type = str; description = "Login to connect to host"; };
504 port = mkOption { type = str; default = "22"; description = "Port to connect to host"; };
505 host = mkOption { type = str; description = "Host to connect to"; };
506 host_key = mkOption { type = str; description = "Host key"; };
507 host_key_type = mkOption { type = str; description = "Host key type"; };
508 parts = mkOption {
509 description = "Parts to backup for this host";
510 type = attrsOf (submodule {
511 options = {
512 remote_folder = mkOption { type = path; description = "Remote folder to backup";};
513 exclude_from = mkOption {
514 type = listOf path;
515 default = [];
516 description = "List of folders/files to exclude from the backup";
517 };
518 files_from = mkOption {
519 type = listOf path;
520 default = [];
521 description = "List of folders/files to backup in the base folder";
522 };
523 args = mkOption {
524 type = nullOr str;
525 default = null;
526 description = "Extra arguments to pass to rsync";
527 };
528 };
529 });
530 };
531 };
532 });
533 };
534 };
535 };
536 };
537 monitoring = mkOption {
538 description = "Monitoring configuration";
539 type = submodule {
540 options = {
541 status_url = mkOption { type = str; description = "URL to push status to"; };
542 status_token = mkOption { type = str; description = "Token for the status url"; };
e820134d 543 http_user_password = mkOption { type = str; description = "HTTP credentials to check services behind wall"; };
ab8f306d 544 email = mkOption { type = str; description = "Admin E-mail"; };
e820134d
IB
545 ssh_public_key = mkOption { type = str; description = "SSH public key"; };
546 ssh_secret_key = mkOption { type = str; description = "SSH secret key"; };
547 imap_login = mkOption { type = str; description = "IMAP login"; };
548 imap_password = mkOption { type = str; description = "IMAP password"; };
25844101 549 eriomem_keys = mkOption { type = listOf (listOf str); description = "Eriomem keys"; default = []; };
6191bdeb
IB
550 ovh_sms = mkOption {
551 description = "OVH credentials for sms script";
552 type = submodule {
553 options = {
554 endpoint = mkOption { type = str; default = "ovh-eu"; description = "OVH endpoint"; };
555 application_key = mkOption { type = str; description = "Application key"; };
556 application_secret = mkOption { type = str; description = "Application secret"; };
557 consumer_key = mkOption { type = str; description = "Consumer key"; };
558 account = mkOption { type = str; description = "Account"; };
559 };
560 };
561 };
2edbb2d8
IB
562 eban = mkOption {
563 description = "Eban credentials for webhook";
564 type = submodule {
565 options = {
566 password = mkOption { type = str; description = "Password"; };
567 };
568 };
569 };
e820134d
IB
570 nrdp_tokens = mkOption { type = listOf str; description = "Tokens allowed to push status update"; };
571 slack_url = mkOption { type = str; description = "Slack webhook url to push status update"; };
572 slack_channel = mkOption { type = str; description = "Slack channel to push status update"; };
e43fdf34
IB
573 netdata_aggregator = mkOption { type = str; description = "Url where netdata information should be sent"; };
574 netdata_keys = mkOption { type = attrsOf str; description = "netdata host keys"; };
e820134d 575 contacts = mkOption { type = attrsOf unspecified; description = "Contact dicts to fill naemon objects"; };
71a2425e
IB
576 email_check = mkOption {
577 description = "Emails services to check";
578 type = attrsOf (submodule {
579 options = {
580 local = mkOption { type = bool; default = false; description = "Use local configuration"; };
581 port = mkOption { type = nullOr str; default = null; description = "Port to connect to ssh"; };
582 login = mkOption { type = nullOr str; default = null; description = "Login to connect to ssh"; };
583 targets = mkOption { type = listOf str; description = "Hosts to send E-mails to"; };
ef0a9217
IB
584 mail_address = mkOption { type = nullOr str; default = null; description = "E-mail recipient part to send e-mail to"; };
585 mail_domain = mkOption { type = nullOr str; default = null; description = "E-mail domain part to send e-mail to"; };
71a2425e
IB
586 };
587 });
588 };
ab8f306d
IB
589 };
590 };
591 };
592 mpd = mkOption {
593 description = "MPD configuration";
594 type = submodule {
595 options = {
596 folder = mkOption { type = str; description = "Folder to serve from the MPD instance"; };
597 password = mkOption { type = str; description = "Password to connect to the MPD instance"; };
598 host = mkOption { type = str; description = "Host to connect to the MPD instance"; };
599 port = mkOption { type = str; description = "Port to connect to the MPD instance"; };
600 };
601 };
602 };
603 ftp = mkOption {
604 description = "FTP configuration";
605 type = submodule {
606 options = {
607 ldap = mkLdapOptions "FTP" {};
608 };
609 };
610 };
ea9c6fe8
IB
611 vpn = mkOption {
612 description = "VPN configuration";
613 type = attrsOf (submodule {
614 options = {
615 prefix = mkOption { type = str; description = "ipv6 prefix for the vpn subnet"; };
616 privateKey = mkOption { type = str; description = "Private key for the host"; };
617 publicKey = mkOption { type = str; description = "Public key for the host"; };
618 };
619 });
620 };
ab8f306d
IB
621 mail = mkOption {
622 description = "Mail configuration";
623 type = submodule {
624 options = {
625 dmarc = mkOption {
626 description = "DMARC configuration";
627 type = submodule {
628 options = {
629 ignore_hosts = mkOption {
630 type = lines;
631 description = ''
632 Hosts to ignore when checking for dmarc
633 '';
634 };
635 };
636 };
637 };
638 dkim = mkOption {
639 description = "DKIM configuration";
640 type = attrsOf (submodule {
641 options = {
642 public = mkOption {
643 type = str;
644 example = ''
645 ( "v=DKIM1; k=rsa; "
646 "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC3w1a2aMxWw9+hdcmbqX4UevcVqr204y0K73Wdc7MPZiOOlUJQYsMNSYR1Y/SC7jmPKeitpcJCpQgn/cveJZbuikjjPLsDReHyFEYmC278ZLRTELHx6f1IXM8WE08JIRT69CfZiMi1rVcOh9qRT4F93PyjCauU8Y5hJjtg9ThsWwIDAQAB" )
647 '';
648 description = "Public entry to put in DNS TXT field";
649 };
650 private = mkOption { type = str; description = "Private key"; };
651 };
652 });
653 };
654 postfix = mkOption {
655 description = "Postfix configuration";
656 type = submodule {
657 options = {
658 additional_mailbox_domains = mkOption {
659 description = ''
660 List of domains that are used as mailbox final destination, in addition to those defined in the DNS records
661 '';
662 type = listOf str;
663 };
87a8bffd
IB
664 mysql = mkMysqlOptions "Postfix" {
665 password_encrypt = mkOption { type = str; description = "Key to encrypt relay password in database"; };
666 };
ab8f306d
IB
667 backup_domains = mkOption {
668 description = ''
669 Domains that are accepted for relay as backup domain
670 '';
671 type = attrsOf (submodule {
672 options = {
673 domains = mkOption { type = listOf str; description = "Domains list"; };
674 relay_restrictions = mkOption {
675 type = lines;
676 description = ''
677 Restrictions for relaying the e-mails from the domains
678 '';
679 };
680 recipient_maps = mkOption {
681 description = ''
682 Recipient map to accept relay for.
683 Must be specified for domain, the rules apply to everyone!
684 '';
685 type = listOf (submodule {
686 options = {
687 type = mkOption {
688 type = enum [ "hash" ];
689 description = "Map type";
690 };
691 content = mkOption {
692 type = str;
693 description = "Map content";
694 };
695 };
696 });
697 };
698 };
699 });
700 };
701 };
702 };
703 };
704 dovecot = mkOption {
705 description = "Dovecot configuration";
706 type = submodule {
707 options = {
708 ldap = mkLdapOptions "Dovecot" {
709 pass_attrs = mkOption { type = str; description = "Password attribute in LDAP"; };
710 user_attrs = mkOption { type = str; description = "User attribute mapping in LDAP"; };
711 iterate_attrs = mkOption { type = str; description = "User attribute mapping for listing in LDAP"; };
712 iterate_filter = mkOption { type = str; description = "User attribute filter for listing in LDAP"; };
22b4bd78 713 postfix_mailbox_filter = mkOption { type = str; description = "Postfix filter to get mailboxes"; };
ab8f306d
IB
714 };
715 };
716 };
717 };
718 rspamd = mkOption {
719 description = "rspamd configuration";
720 type = submodule {
721 options = {
722 redis = mkRedisOptions "Redis";
723 read_password_hashed = mkOption { type = str; description = "Hashed read password for rspamd"; };
724 write_password_hashed = mkOption { type = str; description = "Hashed write password for rspamd"; };
725 read_password = mkOption {
726 type = str;
727 description = "Read password for rspamd. Unused";
728 apply = x: "";
729 };
730 write_password = mkOption {
731 type = str;
732 description = "Write password for rspamd. Unused";
733 apply = x: "";
734 };
735 };
736 };
737 };
738 scripts = mkOption {
739 description = "Mail script recipients";
740 type = attrsOf (submodule {
741 options = {
5b53d86f 742 external = mkEnableOption "Create a script_<name>@mail.immae.eu external address";
ab8f306d
IB
743 src = mkOption {
744 description = ''
745 git source to fetch the script from.
746 It must have a default.nix file as its root accepting a scriptEnv parameter
747 '';
748 type = submodule {
749 options = {
750 url = mkOption { type = str; description = "git url to fetch"; };
751 rev = mkOption { type = str; description = "git reference to fetch"; };
752 };
753 };
754 };
755 env = mkOption {
756 description = "Variables to pass to the script";
757 type = unspecified;
758 };
759 };
760 });
761 };
418a4ed7
IB
762 sympa = mkOption {
763 description = "Sympa configuration";
764 type = submodule {
765 options = {
766 listmasters = mkOption {
767 type = listOf str;
768 description = "Listmasters";
769 };
770 postgresql = mkPsqlOptions "Sympa";
771 data_sources = mkOption {
772 type = attrsOf str;
773 default = {};
774 description = "Data sources to make available to sympa";
775 };
776 scenari = mkOption {
777 type = attrsOf str;
778 default = {};
779 description = "Scenari to make available to sympa";
780 };
781 };
782 };
783 };
ab8f306d
IB
784 };
785 };
786 };
787 buildbot = mkOption {
788 description = "Buildbot configuration";
789 type = submodule {
790 options = {
791 user = mkOption {
792 description = "Buildbot user";
793 type = submodule {
794 options = {
795 uid = mkOption {
796 description = "user uid";
797 type = int;
798 };
799 gid = mkOption {
800 description = "user gid";
801 type = int;
802 };
803 };
804 };
805 };
806 ldap = mkOption {
807 description = "Ldap configuration for buildbot";
808 type = submodule {
809 options = {
810 password = mkOption { type = str; description = "Buildbot password"; };
811 };
812 };
813 };
814 projects = mkOption {
815 description = "Projects to make a buildbot for";
816 type = attrsOf (submodule {
817 options = {
818 name = mkOption { type = str; description = "Project name"; };
819 packages = mkOption {
820 type = unspecified;
821 example = literalExample ''
822 pkgs: [ pkgs.bash pkgs.git pkgs.gzip pkgs.openssh ];
823 '';
824 description = ''
825 Function.
826 Builds packages list to make available to buildbot project.
827 Takes pkgs as argument.
828 '';
829 };
830 pythonPackages = mkOption {
831 type = unspecified;
832 example = literalExample ''
833 p: pkgs: [ pkgs.python3Packages.pip ];
834 '';
835 description = ''
836 Function.
837 Builds python packages list to make available to buildbot project.
838 Takes buildbot python module as first argument and pkgs as second argument in order to augment the python modules list.
839 '';
840 };
841 pythonPathHome = mkOption { type = bool; description = "Whether to add project’s python home to python path"; };
842 secrets = mkOption {
843 type = attrsOf str;
844 description = "Secrets for the project to dump as files";
845 };
846 environment = mkOption {
847 type = attrsOf str;
848 description = ''
849 Environment variables for the project.
850 BUILDBOT_ is prefixed to the variable names
851 '';
852 };
853 activationScript = mkOption {
854 type = lines;
855 description = ''
856 Activation script to run during deployment
857 '';
858 };
859 builderPaths = mkOption {
860 type = attrsOf unspecified;
861 default = {};
862 description = ''
863 Attrs of functions to make accessible specifically per builder.
864 Takes pkgs as argument and should return a single path containing binaries.
865 This path will be accessible as BUILDBOT_PATH_<attrskey>
866 '';
867 };
868 webhookTokens = mkOption {
869 type = nullOr (listOf str);
870 default = null;
871 description = ''
872 List of tokens allowed to push to project’s change_hook/base endpoint
873 '';
874 };
875 };
876 });
877 };
878 };
879 };
880 };
881 tools = mkOption {
882 description = "Tools configurations";
883 type = submodule {
884 options = {
251c0a13 885 contact = mkOption { type = str; description = "Contact e-mail address"; };
4c42e0be
IB
886 assets = mkOption {
887 default = {};
888 type = attrsOf (submodule {
889 options = {
890 url = mkOption { type = str; description = "URL to fetch"; };
891 sha256 = mkOption { type = str; description = "Hash of the url"; };
892 };
893 });
894 description = "Assets to provide on assets.immae.eu";
895 };
ab8f306d
IB
896 davical = mkOption {
897 description = "Davical configuration";
898 type = submodule {
899 options = {
900 postgresql = mkPsqlOptions "Davical";
901 ldap = mkLdapOptions "Davical" {};
902 };
903 };
904 };
905 diaspora = mkOption {
906 description = "Diaspora configuration";
907 type = submodule {
908 options = {
909 postgresql = mkPsqlOptions "Diaspora";
910 redis = mkRedisOptions "Diaspora";
911 ldap = mkLdapOptions "Diaspora" {};
912 secret_token = mkOption { type = str; description = "Secret token"; };
913 };
914 };
915 };
7df5e532
IB
916 dmarc_reports = mkOption {
917 description = "DMARC reports configuration";
918 type = submodule {
919 options = {
920 mysql = mkMysqlOptions "DMARC" {};
9c08c3bc 921 anonymous_key = mkOption { type = str; description = "Anonymous hashing key"; };
7df5e532
IB
922 };
923 };
924 };
ab8f306d
IB
925 etherpad-lite = mkOption {
926 description = "Etherpad configuration";
927 type = submodule {
928 options = {
929 postgresql = mkPsqlOptions "Etherpad";
930 ldap = mkLdapOptions "Etherpad" {
931 group_filter = mkOption { type = str; description = "Filter for groups"; };
932 };
f0d942ac 933 adminPassword = mkOption { type = str; description = "Admin password for mypads / admin"; };
ab8f306d
IB
934 session_key = mkOption { type = str; description = "Session key"; };
935 api_key = mkOption { type = str; description = "API key"; };
936 redirects = mkOption { type = str; description = "Redirects for apache"; };
937 };
938 };
939 };
940 gitolite = mkOption {
941 description = "Gitolite configuration";
942 type = submodule {
943 options = {
944 ldap = mkLdapOptions "Gitolite" {};
945 };
946 };
947 };
948 kanboard = mkOption {
949 description = "Kanboard configuration";
950 type = submodule {
951 options = {
952 postgresql = mkPsqlOptions "Kanboard";
953 ldap = mkLdapOptions "Kanboard" {
954 admin_dn = mkOption { type = str; description = "Admin DN"; };
955 };
956 };
957 };
958 };
959 mantisbt = mkOption {
960 description = "Mantisbt configuration";
961 type = submodule {
962 options = {
963 postgresql = mkPsqlOptions "Mantisbt";
964 ldap = mkLdapOptions "Mantisbt" {};
965 master_salt = mkOption { type = str; description = "Master salt for password hash"; };
966 };
967 };
968 };
969 mastodon = mkOption {
970 description = "Mastodon configuration";
971 type = submodule {
972 options = {
973 postgresql = mkPsqlOptions "Mastodon";
974 redis = mkRedisOptions "Mastodon";
975 ldap = mkLdapOptions "Mastodon" {};
976 paperclip_secret = mkOption { type = str; description = "Paperclip secret"; };
977 otp_secret = mkOption { type = str; description = "OTP secret"; };
978 secret_key_base = mkOption { type = str; description = "Secret key base"; };
979 vapid = mkOption {
980 description = "vapid key";
981 type = submodule {
982 options = {
983 private = mkOption { type = str; description = "Private key"; };
984 public = mkOption { type = str; description = "Public key"; };
985 };
986 };
987 };
988 };
989 };
990 };
991 mediagoblin = mkOption {
992 description = "Mediagoblin configuration";
993 type = submodule {
994 options = {
995 postgresql = mkPsqlOptions "Mediagoblin";
996 redis = mkRedisOptions "Mediagoblin";
997 ldap = mkLdapOptions "Mediagoblin" {};
998 };
999 };
1000 };
1001 nextcloud = mkOption {
1002 description = "Nextcloud configuration";
1003 type = submodule {
1004 options = {
1005 postgresql = mkPsqlOptions "Peertube";
1006 redis = mkRedisOptions "Peertube";
1007 password_salt = mkOption { type = str; description = "Password salt"; };
1008 instance_id = mkOption { type = str; description = "Instance ID"; };
1009 secret = mkOption { type = str; description = "App secret"; };
1010 };
1011 };
1012 };
1013 peertube = mkOption {
1014 description = "Peertube configuration";
1015 type = submodule {
1016 options = {
1017 listenPort = mkOption { type = port; description = "Port to listen to"; };
1018 postgresql = mkPsqlOptions "Peertube";
1019 redis = mkRedisOptions "Peertube";
1020 ldap = mkLdapOptions "Peertube" {};
1021 };
1022 };
1023 };
8a05c7fb
IB
1024 syden_peertube = mkOption {
1025 description = "Peertube Syden configuration";
1026 type = submodule {
1027 options = {
1028 listenPort = mkOption { type = port; description = "Port to listen to"; };
1029 postgresql = mkPsqlOptions "Peertube";
1030 redis = mkRedisOptions "Peertube";
1031 };
1032 };
1033 };
ab8f306d
IB
1034 phpldapadmin = mkOption {
1035 description = "phpLdapAdmin configuration";
1036 type = submodule {
1037 options = {
1038 ldap = mkLdapOptions "phpldapadmin" {};
1039 };
1040 };
1041 };
1042 rompr = mkOption {
1043 description = "Rompr configuration";
1044 type = submodule {
1045 options = {
1046 mpd = mkOption {
1047 description = "MPD configuration";
1048 type = submodule {
1049 options = {
1050 host = mkOption { type = str; description = "Host for MPD"; };
1051 port = mkOption { type = port; description = "Port to access MPD host"; };
1052 };
1053 };
1054 };
1055 };
1056 };
1057 };
1058 roundcubemail = mkOption {
1059 description = "Roundcubemail configuration";
1060 type = submodule {
1061 options = {
1062 postgresql = mkPsqlOptions "TT-RSS";
1063 secret = mkOption { type = str; description = "Secret"; };
1064 };
1065 };
1066 };
1067 shaarli = mkOption {
1068 description = "Shaarli configuration";
1069 type = submodule {
1070 options = {
1071 ldap = mkLdapOptions "Shaarli" {};
1072 };
1073 };
1074 };
a97118c4
IB
1075 status_engine = mkOption {
1076 description = "Status Engine configuration";
1077 type = submodule {
1078 options = {
1079 mysql = mkMysqlOptions "StatusEngine" {};
1080 ldap = mkLdapOptions "StatusEngine" {};
1081 };
1082 };
1083 };
ab8f306d
IB
1084 task = mkOption {
1085 description = "Taskwarrior configuration";
1086 type = submodule {
1087 options = {
1088 ldap = mkLdapOptions "Taskwarrior" {};
1089 taskwarrior-web = mkOption {
1090 description = "taskwarrior-web profiles";
1091 type = attrsOf (submodule {
1092 options = {
1093 uid = mkOption {
1094 type = listOf str;
1095 description = "List of ldap uids having access to this profile";
1096 };
1097 org = mkOption { type = str; description = "Taskd organisation"; };
1098 key = mkOption { type = str; description = "Taskd key"; };
1099 date = mkOption { type = str; description = "Preferred date format"; };
1100 };
1101 });
1102 };
1103 };
1104 };
1105 };
1106 ttrss = mkOption {
1107 description = "TT-RSS configuration";
1108 type = submodule {
1109 options = {
1110 postgresql = mkPsqlOptions "TT-RSS";
1111 ldap = mkLdapOptions "TT-RSS" {};
1112 };
1113 };
1114 };
1115 wallabag = mkOption {
1116 description = "Wallabag configuration";
1117 type = submodule {
1118 options = {
1119 postgresql = mkPsqlOptions "Wallabag";
1120 ldap = mkLdapOptions "Wallabag" {
1121 admin_filter = mkOption { type = str; description = "Admin users filter"; };
1122 };
1123 redis = mkRedisOptions "Wallabag";
1124 secret = mkOption { type = str; description = "App secret"; };
1125 };
1126 };
1127 };
251c0a13
IB
1128 webhooks = mkOption {
1129 type = attrsOf str;
1130 description = "Mapping 'name'.php => script for webhooks";
1131 };
68c45ad5
IB
1132 csp_reports = mkOption {
1133 description = "CSP report configuration";
1134 type = submodule {
1135 options = {
1136 report_uri = mkOption { type = str; description = "URI to report CSP violations to"; };
1137 policies = mkOption { type = attrsOf str; description = "CSP policies to apply"; };
1138 postgresql = mkPsqlOptions "CSP reports";
1139 };
1140 };
1141 };
6338573a
IB
1142 commento = mkOption {
1143 description = "Commento configuration";
1144 type = submodule {
1145 options = {
1146 listenPort = mkOption { type = port; description = "Port to listen to"; };
1147 postgresql = mkPsqlOptions "Commento";
1148 smtp = mkSmtpOptions "Commento";
1149 };
1150 };
1151 };
ab8f306d
IB
1152 ympd = mkOption {
1153 description = "Ympd configuration";
1154 type = submodule {
1155 options = {
1156 listenPort = mkOption { type = port; description = "Port to listen to"; };
1157 mpd = mkOption {
1158 description = "MPD configuration";
1159 type = submodule {
1160 options = {
1161 password = mkOption { type = str; description = "Password to access MPD host"; };
1162 host = mkOption { type = str; description = "Host for MPD"; };
1163 port = mkOption { type = port; description = "Port to access MPD host"; };
1164 };
1165 };
1166 };
1167 };
1168 };
1169 };
1170 yourls = mkOption {
1171 description = "Yourls configuration";
1172 type = submodule {
1173 options = {
87a8bffd 1174 mysql = mkMysqlOptions "Yourls" {};
ab8f306d
IB
1175 ldap = mkLdapOptions "Yourls" {};
1176 cookieKey = mkOption { type = str; description = "Cookie key"; };
1177 };
1178 };
1179 };
1180 };
1181 };
1182 };
75489e72 1183 serverSpecific = mkOption { type = attrsOf unspecified; description = "Server specific configuration"; };
ab8f306d
IB
1184 websites = mkOption {
1185 description = "Websites configurations";
1186 type = submodule {
1187 options = {
91b3d06b
IB
1188 immae = mkOption {
1189 description = "Immae configuration by environment";
1190 type = submodule {
1191 options = {
1192 temp = mkOption {
1193 description = "Temp configuration";
1194 type = submodule {
1195 options = {
1196 ldap = mkLdapOptions "Immae temp" {
1197 filter = mkOption { type = str; description = "Filter for user access"; };
1198 };
1199 };
1200 };
1201 };
1202 };
1203 };
1204 };
829ef7f1
IB
1205 isabelle = mkOption {
1206 description = "Isabelle configurations by environment";
ab8f306d
IB
1207 type =
1208 let
1209 atenSubmodule = mkOption {
1210 description = "environment configuration";
1211 type = submodule {
1212 options = {
1213 environment = mkOption { type = str; description = "Symfony environment"; };
1214 secret = mkOption { type = str; description = "Symfony App secret"; };
1215 postgresql = mkPsqlOptions "Aten";
1216 };
1217 };
1218 };
1219 in
1220 submodule {
1221 options = {
829ef7f1
IB
1222 aten_production = atenSubmodule;
1223 aten_integration = atenSubmodule;
423c3f1c
IB
1224 iridologie = mkOption {
1225 description = "environment configuration";
1226 type = submodule {
1227 options = {
1228 environment = mkOption { type = str; description = "SPIP environment"; };
1229 mysql = mkMysqlOptions "Iridologie" {};
1230 ldap = mkLdapOptions "Iridologie" {};
1231 };
1232 };
1233 };
ab8f306d
IB
1234 };
1235 };
1236 };
1237 chloe = mkOption {
1238 description = "Chloe configurations by environment";
1239 type =
1240 let
1241 chloeSubmodule = mkOption {
1242 description = "environment configuration";
1243 type = submodule {
1244 options = {
423c3f1c 1245 environment = mkOption { type = str; description = "SPIP environment"; };
87a8bffd 1246 mysql = mkMysqlOptions "Chloe" {};
ab8f306d
IB
1247 ldap = mkLdapOptions "Chloe" {};
1248 };
1249 };
1250 };
1251 in
1252 submodule {
1253 options = {
1254 production = chloeSubmodule;
1255 integration = chloeSubmodule;
1256 };
1257 };
1258 };
1259 connexionswing = mkOption {
1260 description = "Connexionswing configurations by environment";
1261 type =
1262 let
1263 csSubmodule = mkOption {
1264 description = "environment configuration";
1265 type = submodule {
1266 options = {
1267 environment = mkOption { type = str; description = "Symfony environment"; };
87a8bffd 1268 mysql = mkMysqlOptions "Connexionswing" {};
ab8f306d
IB
1269 secret = mkOption { type = str; description = "Symfony App secret"; };
1270 email = mkOption { type = str; description = "Symfony email notification"; };
1271 };
1272 };
1273 };
1274 in
1275 submodule {
1276 options = {
1277 production = csSubmodule;
1278 integration = csSubmodule;
1279 };
1280 };
1281 };
1282 jerome = mkOption {
1283 description = "Naturaloutil configuration";
1284 type = submodule {
1285 options = {
87a8bffd 1286 mysql = mkMysqlOptions "Naturaloutil" {};
ab8f306d
IB
1287 server_admin = mkOption { type = str; description = "Server admin e-mail"; };
1288 };
1289 };
1290 };
d3452fc5 1291 telio_tortay = mkOption {
ab8f306d
IB
1292 description = "Telio Tortay configuration";
1293 type = submodule {
1294 options = {
1295 server_admin = mkOption { type = str; description = "Server admin e-mail"; };
1296 };
1297 };
1298 };
d3452fc5 1299 ludivine = mkOption {
ab8f306d
IB
1300 description = "Ludivinecassal configurations by environment";
1301 type =
1302 let
1303 lcSubmodule = mkOption {
1304 description = "environment configuration";
1305 type = submodule {
1306 options = {
1307 environment = mkOption { type = str; description = "Symfony environment"; };
87a8bffd 1308 mysql = mkMysqlOptions "LudivineCassal" {};
ab8f306d
IB
1309 ldap = mkLdapOptions "LudivineCassal" {};
1310 secret = mkOption { type = str; description = "Symfony App secret"; };
1311 };
1312 };
1313 };
1314 in
1315 submodule {
1316 options = {
1317 production = lcSubmodule;
1318 integration = lcSubmodule;
1319 };
1320 };
1321 };
1322 emilia = mkOption {
1323 description = "Emilia configuration";
1324 type = submodule {
1325 options = {
1326 postgresql = mkPsqlOptions "Emilia";
1327 };
1328 };
1329 };
1330 florian = mkOption {
1331 description = "Florian configuration";
1332 type = submodule {
1333 options = {
1334 server_admin = mkOption { type = str; description = "Server admin e-mail"; };
1335 };
1336 };
1337 };
1338 nassime = mkOption {
1339 description = "Nassime configuration";
1340 type = submodule {
1341 options = {
1342 server_admin = mkOption { type = str; description = "Server admin e-mail"; };
1343 };
1344 };
1345 };
1346 piedsjaloux = mkOption {
1347 description = "Piedsjaloux configurations by environment";
1348 type =
1349 let
1350 pjSubmodule = mkOption {
1351 description = "environment configuration";
1352 type = submodule {
1353 options = {
1354 environment = mkOption { type = str; description = "Symfony environment"; };
87a8bffd 1355 mysql = mkMysqlOptions "Piedsjaloux" {};
ab8f306d
IB
1356 secret = mkOption { type = str; description = "Symfony App secret"; };
1357 };
1358 };
1359 };
1360 in
1361 submodule {
1362 options = {
1363 production = pjSubmodule;
1364 integration = pjSubmodule;
1365 };
1366 };
1367 };
91b75ffe
IB
1368 richie = mkOption {
1369 description = "Europe Richie configurations by environment";
1370 type = submodule {
1371 options = {
87a8bffd 1372 mysql = mkMysqlOptions "Richie" {};
91b75ffe
IB
1373 smtp_mailer = mkOption {
1374 description = "SMTP mailer configuration";
1375 type = submodule {
1376 options = {
1377 user = mkOption { type = str; description = "Username"; };
1378 password = mkOption { type = str; description = "Password"; };
1379 };
1380 };
1381 };
1382 };
1383 };
1384 };
6c95e93c
IB
1385 caldance = mkOption {
1386 description = "Caldance configurations by environment";
1387 type = submodule {
1388 options = {
1389 integration = mkOption {
1390 description = "environment configuration";
1391 type = submodule {
1392 options = {
1393 password = mkOption { type = str; description = "Password file content for basic auth"; };
1394 };
1395 };
1396 };
1397 };
1398 };
1399 };
ab8f306d
IB
1400 tellesflorian = mkOption {
1401 description = "Tellesflorian configurations by environment";
1402 type =
1403 let
1404 tfSubmodule = mkOption {
1405 description = "environment configuration";
1406 type = submodule {
1407 options = {
1408 environment = mkOption { type = str; description = "Symfony environment"; };
87a8bffd 1409 mysql = mkMysqlOptions "Tellesflorian" {};
ab8f306d
IB
1410 secret = mkOption { type = str; description = "Symfony App secret"; };
1411 invite_passwords = mkOption { type = str; description = "Password basic auth"; };
1412 };
1413 };
1414 };
1415 in
1416 submodule {
1417 options = {
1418 integration = tfSubmodule;
1419 };
1420 };
1421 };
1422 };
1423 };
1424 };
1425
1426 privateFiles = mkOption {
1427 type = path;
1428 description = ''
1429 Path to secret files to make available during build
1430 '';
1431 };
1432 };
619e4f46
IB
1433 options.hostEnv = mkOption {
1434 readOnly = true;
1435 type = hostEnv;
1436 default = config.myEnv.servers."${name}";
1437 description = "Host environment";
ab8f306d
IB
1438 };
1439}