]> git.immae.eu Git - perso/Immae/Config/Nix.git/blame - modules/private/environment.nix
Add Eban monitoring
[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"; };
404 slaves = mkOption {
405 description = "NS slave groups of this zone";
406 type = listOf str;
407 };
408 ns = mkOption {
409 description = "groups names that should have their NS entries listed here";
410 type = listOf str;
411 };
412 extra = mkOption {
413 description = "Extra zone configuration for bind";
414 example = ''
415 notify yes;
416 '';
417 type = lines;
418 };
419 entries = mkOption { type = lines; description = "Regular entries of the NS zone"; };
420 withEmail = mkOption {
421 description = "List of domains that should have mail entries (MX, dkim, SPF, ...)";
422 default = [];
423 type = listOf (submodule {
424 options = {
425 domain = mkOption { type = str; description = "Which subdomain is concerned"; };
426 send = mkOption { type = bool; description = "Whether there can be e-mails originating from the subdomain"; };
427 receive = mkOption { type = bool; description = "Whether there can be e-mails arriving to the subdomain"; };
428 };
429 });
430 };
431 };
432 });
433 };
434 };
435 };
436 };
437 backup = mkOption {
438 description = ''
439 Remote backup with duplicity
440 '';
441 type = submodule {
442 options = {
443 password = mkOption { type = str; description = "Password for encrypting files"; };
5a61f6ad
IB
444 remotes = mkOption {
445 type = attrsOf (submodule {
446 options = {
447 remote = mkOption {
448 type = unspecified;
449 example = literalExample ''
450 bucket: "s3://some_host/${bucket}";
451 '';
452 description = ''
453 Function.
454 Takes a bucket name as argument and returns a url
455 '';
456 };
457 accessKeyId = mkOption { type = str; description = "Remote access-key"; };
458 secretAccessKey = mkOption { type = str; description = "Remote access secret"; };
459 };
460 });
461 };
ab8f306d
IB
462 };
463 };
464 };
5dda316b
IB
465 zrepl_backup = mkOption {
466 type = submodule {
467 options = {
468 ssh_key = mkOption {
469 description = "SSH key information";
470 type = submodule {
471 options = {
472 public = mkOption { type = str; description = "Public part of the key"; };
473 private = mkOption { type = lines; description = "Private part of the key"; };
474 };
475 };
476 };
477 mysql = mkMysqlOptions "Zrepl" {};
478 };
479 };
480 };
ab8f306d
IB
481 rsync_backup = mkOption {
482 description =''
483 Rsync backup configuration from controlled host
484 '';
485 type = submodule {
486 options = {
ab8f306d
IB
487 ssh_key = mkOption {
488 description = "SSH key information";
489 type = submodule {
490 options = {
491 public = mkOption { type = str; description = "Public part of the key"; };
492 private = mkOption { type = lines; description = "Private part of the key"; };
493 };
494 };
495 };
496 profiles = mkOption {
497 description = "Attrs of profiles to backup";
498 type = attrsOf (submodule {
499 options = {
500 keep = mkOption { type = int; description = "Number of backups to keep"; };
46b7e627 501 check_command = mkOption { type = str; description = "command to check if backup needs to be done"; default = "backup"; };
ab8f306d
IB
502 login = mkOption { type = str; description = "Login to connect to host"; };
503 port = mkOption { type = str; default = "22"; description = "Port to connect to host"; };
504 host = mkOption { type = str; description = "Host to connect to"; };
505 host_key = mkOption { type = str; description = "Host key"; };
506 host_key_type = mkOption { type = str; description = "Host key type"; };
507 parts = mkOption {
508 description = "Parts to backup for this host";
509 type = attrsOf (submodule {
510 options = {
511 remote_folder = mkOption { type = path; description = "Remote folder to backup";};
512 exclude_from = mkOption {
513 type = listOf path;
514 default = [];
515 description = "List of folders/files to exclude from the backup";
516 };
517 files_from = mkOption {
518 type = listOf path;
519 default = [];
520 description = "List of folders/files to backup in the base folder";
521 };
522 args = mkOption {
523 type = nullOr str;
524 default = null;
525 description = "Extra arguments to pass to rsync";
526 };
527 };
528 });
529 };
530 };
531 });
532 };
533 };
534 };
535 };
536 monitoring = mkOption {
537 description = "Monitoring configuration";
538 type = submodule {
539 options = {
540 status_url = mkOption { type = str; description = "URL to push status to"; };
541 status_token = mkOption { type = str; description = "Token for the status url"; };
e820134d 542 http_user_password = mkOption { type = str; description = "HTTP credentials to check services behind wall"; };
ab8f306d 543 email = mkOption { type = str; description = "Admin E-mail"; };
e820134d
IB
544 ssh_public_key = mkOption { type = str; description = "SSH public key"; };
545 ssh_secret_key = mkOption { type = str; description = "SSH secret key"; };
546 imap_login = mkOption { type = str; description = "IMAP login"; };
547 imap_password = mkOption { type = str; description = "IMAP password"; };
25844101 548 eriomem_keys = mkOption { type = listOf (listOf str); description = "Eriomem keys"; default = []; };
6191bdeb
IB
549 ovh_sms = mkOption {
550 description = "OVH credentials for sms script";
551 type = submodule {
552 options = {
553 endpoint = mkOption { type = str; default = "ovh-eu"; description = "OVH endpoint"; };
554 application_key = mkOption { type = str; description = "Application key"; };
555 application_secret = mkOption { type = str; description = "Application secret"; };
556 consumer_key = mkOption { type = str; description = "Consumer key"; };
557 account = mkOption { type = str; description = "Account"; };
558 };
559 };
560 };
2edbb2d8
IB
561 eban = mkOption {
562 description = "Eban credentials for webhook";
563 type = submodule {
564 options = {
565 password = mkOption { type = str; description = "Password"; };
566 };
567 };
568 };
e820134d
IB
569 nrdp_tokens = mkOption { type = listOf str; description = "Tokens allowed to push status update"; };
570 slack_url = mkOption { type = str; description = "Slack webhook url to push status update"; };
571 slack_channel = mkOption { type = str; description = "Slack channel to push status update"; };
e43fdf34
IB
572 netdata_aggregator = mkOption { type = str; description = "Url where netdata information should be sent"; };
573 netdata_keys = mkOption { type = attrsOf str; description = "netdata host keys"; };
e820134d 574 contacts = mkOption { type = attrsOf unspecified; description = "Contact dicts to fill naemon objects"; };
71a2425e
IB
575 email_check = mkOption {
576 description = "Emails services to check";
577 type = attrsOf (submodule {
578 options = {
579 local = mkOption { type = bool; default = false; description = "Use local configuration"; };
580 port = mkOption { type = nullOr str; default = null; description = "Port to connect to ssh"; };
581 login = mkOption { type = nullOr str; default = null; description = "Login to connect to ssh"; };
582 targets = mkOption { type = listOf str; description = "Hosts to send E-mails to"; };
ef0a9217
IB
583 mail_address = mkOption { type = nullOr str; default = null; description = "E-mail recipient part to send e-mail to"; };
584 mail_domain = mkOption { type = nullOr str; default = null; description = "E-mail domain part to send e-mail to"; };
71a2425e
IB
585 };
586 });
587 };
ab8f306d
IB
588 };
589 };
590 };
591 mpd = mkOption {
592 description = "MPD configuration";
593 type = submodule {
594 options = {
595 folder = mkOption { type = str; description = "Folder to serve from the MPD instance"; };
596 password = mkOption { type = str; description = "Password to connect to the MPD instance"; };
597 host = mkOption { type = str; description = "Host to connect to the MPD instance"; };
598 port = mkOption { type = str; description = "Port to connect to the MPD instance"; };
599 };
600 };
601 };
602 ftp = mkOption {
603 description = "FTP configuration";
604 type = submodule {
605 options = {
606 ldap = mkLdapOptions "FTP" {};
607 };
608 };
609 };
ea9c6fe8
IB
610 vpn = mkOption {
611 description = "VPN configuration";
612 type = attrsOf (submodule {
613 options = {
614 prefix = mkOption { type = str; description = "ipv6 prefix for the vpn subnet"; };
615 privateKey = mkOption { type = str; description = "Private key for the host"; };
616 publicKey = mkOption { type = str; description = "Public key for the host"; };
617 };
618 });
619 };
ab8f306d
IB
620 mail = mkOption {
621 description = "Mail configuration";
622 type = submodule {
623 options = {
624 dmarc = mkOption {
625 description = "DMARC configuration";
626 type = submodule {
627 options = {
628 ignore_hosts = mkOption {
629 type = lines;
630 description = ''
631 Hosts to ignore when checking for dmarc
632 '';
633 };
634 };
635 };
636 };
637 dkim = mkOption {
638 description = "DKIM configuration";
639 type = attrsOf (submodule {
640 options = {
641 public = mkOption {
642 type = str;
643 example = ''
644 ( "v=DKIM1; k=rsa; "
645 "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC3w1a2aMxWw9+hdcmbqX4UevcVqr204y0K73Wdc7MPZiOOlUJQYsMNSYR1Y/SC7jmPKeitpcJCpQgn/cveJZbuikjjPLsDReHyFEYmC278ZLRTELHx6f1IXM8WE08JIRT69CfZiMi1rVcOh9qRT4F93PyjCauU8Y5hJjtg9ThsWwIDAQAB" )
646 '';
647 description = "Public entry to put in DNS TXT field";
648 };
649 private = mkOption { type = str; description = "Private key"; };
650 };
651 });
652 };
653 postfix = mkOption {
654 description = "Postfix configuration";
655 type = submodule {
656 options = {
657 additional_mailbox_domains = mkOption {
658 description = ''
659 List of domains that are used as mailbox final destination, in addition to those defined in the DNS records
660 '';
661 type = listOf str;
662 };
87a8bffd
IB
663 mysql = mkMysqlOptions "Postfix" {
664 password_encrypt = mkOption { type = str; description = "Key to encrypt relay password in database"; };
665 };
ab8f306d
IB
666 backup_domains = mkOption {
667 description = ''
668 Domains that are accepted for relay as backup domain
669 '';
670 type = attrsOf (submodule {
671 options = {
672 domains = mkOption { type = listOf str; description = "Domains list"; };
673 relay_restrictions = mkOption {
674 type = lines;
675 description = ''
676 Restrictions for relaying the e-mails from the domains
677 '';
678 };
679 recipient_maps = mkOption {
680 description = ''
681 Recipient map to accept relay for.
682 Must be specified for domain, the rules apply to everyone!
683 '';
684 type = listOf (submodule {
685 options = {
686 type = mkOption {
687 type = enum [ "hash" ];
688 description = "Map type";
689 };
690 content = mkOption {
691 type = str;
692 description = "Map content";
693 };
694 };
695 });
696 };
697 };
698 });
699 };
700 };
701 };
702 };
703 dovecot = mkOption {
704 description = "Dovecot configuration";
705 type = submodule {
706 options = {
707 ldap = mkLdapOptions "Dovecot" {
708 pass_attrs = mkOption { type = str; description = "Password attribute in LDAP"; };
709 user_attrs = mkOption { type = str; description = "User attribute mapping in LDAP"; };
710 iterate_attrs = mkOption { type = str; description = "User attribute mapping for listing in LDAP"; };
711 iterate_filter = mkOption { type = str; description = "User attribute filter for listing in LDAP"; };
22b4bd78 712 postfix_mailbox_filter = mkOption { type = str; description = "Postfix filter to get mailboxes"; };
ab8f306d
IB
713 };
714 };
715 };
716 };
717 rspamd = mkOption {
718 description = "rspamd configuration";
719 type = submodule {
720 options = {
721 redis = mkRedisOptions "Redis";
722 read_password_hashed = mkOption { type = str; description = "Hashed read password for rspamd"; };
723 write_password_hashed = mkOption { type = str; description = "Hashed write password for rspamd"; };
724 read_password = mkOption {
725 type = str;
726 description = "Read password for rspamd. Unused";
727 apply = x: "";
728 };
729 write_password = mkOption {
730 type = str;
731 description = "Write password for rspamd. Unused";
732 apply = x: "";
733 };
734 };
735 };
736 };
737 scripts = mkOption {
738 description = "Mail script recipients";
739 type = attrsOf (submodule {
740 options = {
5b53d86f 741 external = mkEnableOption "Create a script_<name>@mail.immae.eu external address";
ab8f306d
IB
742 src = mkOption {
743 description = ''
744 git source to fetch the script from.
745 It must have a default.nix file as its root accepting a scriptEnv parameter
746 '';
747 type = submodule {
748 options = {
749 url = mkOption { type = str; description = "git url to fetch"; };
750 rev = mkOption { type = str; description = "git reference to fetch"; };
751 };
752 };
753 };
754 env = mkOption {
755 description = "Variables to pass to the script";
756 type = unspecified;
757 };
758 };
759 });
760 };
418a4ed7
IB
761 sympa = mkOption {
762 description = "Sympa configuration";
763 type = submodule {
764 options = {
765 listmasters = mkOption {
766 type = listOf str;
767 description = "Listmasters";
768 };
769 postgresql = mkPsqlOptions "Sympa";
770 data_sources = mkOption {
771 type = attrsOf str;
772 default = {};
773 description = "Data sources to make available to sympa";
774 };
775 scenari = mkOption {
776 type = attrsOf str;
777 default = {};
778 description = "Scenari to make available to sympa";
779 };
780 };
781 };
782 };
ab8f306d
IB
783 };
784 };
785 };
786 buildbot = mkOption {
787 description = "Buildbot configuration";
788 type = submodule {
789 options = {
790 user = mkOption {
791 description = "Buildbot user";
792 type = submodule {
793 options = {
794 uid = mkOption {
795 description = "user uid";
796 type = int;
797 };
798 gid = mkOption {
799 description = "user gid";
800 type = int;
801 };
802 };
803 };
804 };
805 ldap = mkOption {
806 description = "Ldap configuration for buildbot";
807 type = submodule {
808 options = {
809 password = mkOption { type = str; description = "Buildbot password"; };
810 };
811 };
812 };
813 projects = mkOption {
814 description = "Projects to make a buildbot for";
815 type = attrsOf (submodule {
816 options = {
817 name = mkOption { type = str; description = "Project name"; };
818 packages = mkOption {
819 type = unspecified;
820 example = literalExample ''
821 pkgs: [ pkgs.bash pkgs.git pkgs.gzip pkgs.openssh ];
822 '';
823 description = ''
824 Function.
825 Builds packages list to make available to buildbot project.
826 Takes pkgs as argument.
827 '';
828 };
829 pythonPackages = mkOption {
830 type = unspecified;
831 example = literalExample ''
832 p: pkgs: [ pkgs.python3Packages.pip ];
833 '';
834 description = ''
835 Function.
836 Builds python packages list to make available to buildbot project.
837 Takes buildbot python module as first argument and pkgs as second argument in order to augment the python modules list.
838 '';
839 };
840 pythonPathHome = mkOption { type = bool; description = "Whether to add project’s python home to python path"; };
841 secrets = mkOption {
842 type = attrsOf str;
843 description = "Secrets for the project to dump as files";
844 };
845 environment = mkOption {
846 type = attrsOf str;
847 description = ''
848 Environment variables for the project.
849 BUILDBOT_ is prefixed to the variable names
850 '';
851 };
852 activationScript = mkOption {
853 type = lines;
854 description = ''
855 Activation script to run during deployment
856 '';
857 };
858 builderPaths = mkOption {
859 type = attrsOf unspecified;
860 default = {};
861 description = ''
862 Attrs of functions to make accessible specifically per builder.
863 Takes pkgs as argument and should return a single path containing binaries.
864 This path will be accessible as BUILDBOT_PATH_<attrskey>
865 '';
866 };
867 webhookTokens = mkOption {
868 type = nullOr (listOf str);
869 default = null;
870 description = ''
871 List of tokens allowed to push to project’s change_hook/base endpoint
872 '';
873 };
874 };
875 });
876 };
877 };
878 };
879 };
880 tools = mkOption {
881 description = "Tools configurations";
882 type = submodule {
883 options = {
251c0a13 884 contact = mkOption { type = str; description = "Contact e-mail address"; };
4c42e0be
IB
885 assets = mkOption {
886 default = {};
887 type = attrsOf (submodule {
888 options = {
889 url = mkOption { type = str; description = "URL to fetch"; };
890 sha256 = mkOption { type = str; description = "Hash of the url"; };
891 };
892 });
893 description = "Assets to provide on assets.immae.eu";
894 };
ab8f306d
IB
895 davical = mkOption {
896 description = "Davical configuration";
897 type = submodule {
898 options = {
899 postgresql = mkPsqlOptions "Davical";
900 ldap = mkLdapOptions "Davical" {};
901 };
902 };
903 };
904 diaspora = mkOption {
905 description = "Diaspora configuration";
906 type = submodule {
907 options = {
908 postgresql = mkPsqlOptions "Diaspora";
909 redis = mkRedisOptions "Diaspora";
910 ldap = mkLdapOptions "Diaspora" {};
911 secret_token = mkOption { type = str; description = "Secret token"; };
912 };
913 };
914 };
7df5e532
IB
915 dmarc_reports = mkOption {
916 description = "DMARC reports configuration";
917 type = submodule {
918 options = {
919 mysql = mkMysqlOptions "DMARC" {};
9c08c3bc 920 anonymous_key = mkOption { type = str; description = "Anonymous hashing key"; };
7df5e532
IB
921 };
922 };
923 };
ab8f306d
IB
924 etherpad-lite = mkOption {
925 description = "Etherpad configuration";
926 type = submodule {
927 options = {
928 postgresql = mkPsqlOptions "Etherpad";
929 ldap = mkLdapOptions "Etherpad" {
930 group_filter = mkOption { type = str; description = "Filter for groups"; };
931 };
f0d942ac 932 adminPassword = mkOption { type = str; description = "Admin password for mypads / admin"; };
ab8f306d
IB
933 session_key = mkOption { type = str; description = "Session key"; };
934 api_key = mkOption { type = str; description = "API key"; };
935 redirects = mkOption { type = str; description = "Redirects for apache"; };
936 };
937 };
938 };
939 gitolite = mkOption {
940 description = "Gitolite configuration";
941 type = submodule {
942 options = {
943 ldap = mkLdapOptions "Gitolite" {};
944 };
945 };
946 };
947 kanboard = mkOption {
948 description = "Kanboard configuration";
949 type = submodule {
950 options = {
951 postgresql = mkPsqlOptions "Kanboard";
952 ldap = mkLdapOptions "Kanboard" {
953 admin_dn = mkOption { type = str; description = "Admin DN"; };
954 };
955 };
956 };
957 };
958 mantisbt = mkOption {
959 description = "Mantisbt configuration";
960 type = submodule {
961 options = {
962 postgresql = mkPsqlOptions "Mantisbt";
963 ldap = mkLdapOptions "Mantisbt" {};
964 master_salt = mkOption { type = str; description = "Master salt for password hash"; };
965 };
966 };
967 };
968 mastodon = mkOption {
969 description = "Mastodon configuration";
970 type = submodule {
971 options = {
972 postgresql = mkPsqlOptions "Mastodon";
973 redis = mkRedisOptions "Mastodon";
974 ldap = mkLdapOptions "Mastodon" {};
975 paperclip_secret = mkOption { type = str; description = "Paperclip secret"; };
976 otp_secret = mkOption { type = str; description = "OTP secret"; };
977 secret_key_base = mkOption { type = str; description = "Secret key base"; };
978 vapid = mkOption {
979 description = "vapid key";
980 type = submodule {
981 options = {
982 private = mkOption { type = str; description = "Private key"; };
983 public = mkOption { type = str; description = "Public key"; };
984 };
985 };
986 };
987 };
988 };
989 };
990 mediagoblin = mkOption {
991 description = "Mediagoblin configuration";
992 type = submodule {
993 options = {
994 postgresql = mkPsqlOptions "Mediagoblin";
995 redis = mkRedisOptions "Mediagoblin";
996 ldap = mkLdapOptions "Mediagoblin" {};
997 };
998 };
999 };
1000 nextcloud = mkOption {
1001 description = "Nextcloud configuration";
1002 type = submodule {
1003 options = {
1004 postgresql = mkPsqlOptions "Peertube";
1005 redis = mkRedisOptions "Peertube";
1006 password_salt = mkOption { type = str; description = "Password salt"; };
1007 instance_id = mkOption { type = str; description = "Instance ID"; };
1008 secret = mkOption { type = str; description = "App secret"; };
1009 };
1010 };
1011 };
1012 peertube = mkOption {
1013 description = "Peertube configuration";
1014 type = submodule {
1015 options = {
1016 listenPort = mkOption { type = port; description = "Port to listen to"; };
1017 postgresql = mkPsqlOptions "Peertube";
1018 redis = mkRedisOptions "Peertube";
1019 ldap = mkLdapOptions "Peertube" {};
1020 };
1021 };
1022 };
8a05c7fb
IB
1023 syden_peertube = mkOption {
1024 description = "Peertube Syden configuration";
1025 type = submodule {
1026 options = {
1027 listenPort = mkOption { type = port; description = "Port to listen to"; };
1028 postgresql = mkPsqlOptions "Peertube";
1029 redis = mkRedisOptions "Peertube";
1030 };
1031 };
1032 };
ab8f306d
IB
1033 phpldapadmin = mkOption {
1034 description = "phpLdapAdmin configuration";
1035 type = submodule {
1036 options = {
1037 ldap = mkLdapOptions "phpldapadmin" {};
1038 };
1039 };
1040 };
1041 rompr = mkOption {
1042 description = "Rompr configuration";
1043 type = submodule {
1044 options = {
1045 mpd = mkOption {
1046 description = "MPD configuration";
1047 type = submodule {
1048 options = {
1049 host = mkOption { type = str; description = "Host for MPD"; };
1050 port = mkOption { type = port; description = "Port to access MPD host"; };
1051 };
1052 };
1053 };
1054 };
1055 };
1056 };
1057 roundcubemail = mkOption {
1058 description = "Roundcubemail configuration";
1059 type = submodule {
1060 options = {
1061 postgresql = mkPsqlOptions "TT-RSS";
1062 secret = mkOption { type = str; description = "Secret"; };
1063 };
1064 };
1065 };
1066 shaarli = mkOption {
1067 description = "Shaarli configuration";
1068 type = submodule {
1069 options = {
1070 ldap = mkLdapOptions "Shaarli" {};
1071 };
1072 };
1073 };
a97118c4
IB
1074 status_engine = mkOption {
1075 description = "Status Engine configuration";
1076 type = submodule {
1077 options = {
1078 mysql = mkMysqlOptions "StatusEngine" {};
1079 ldap = mkLdapOptions "StatusEngine" {};
1080 };
1081 };
1082 };
ab8f306d
IB
1083 task = mkOption {
1084 description = "Taskwarrior configuration";
1085 type = submodule {
1086 options = {
1087 ldap = mkLdapOptions "Taskwarrior" {};
1088 taskwarrior-web = mkOption {
1089 description = "taskwarrior-web profiles";
1090 type = attrsOf (submodule {
1091 options = {
1092 uid = mkOption {
1093 type = listOf str;
1094 description = "List of ldap uids having access to this profile";
1095 };
1096 org = mkOption { type = str; description = "Taskd organisation"; };
1097 key = mkOption { type = str; description = "Taskd key"; };
1098 date = mkOption { type = str; description = "Preferred date format"; };
1099 };
1100 });
1101 };
1102 };
1103 };
1104 };
1105 ttrss = mkOption {
1106 description = "TT-RSS configuration";
1107 type = submodule {
1108 options = {
1109 postgresql = mkPsqlOptions "TT-RSS";
1110 ldap = mkLdapOptions "TT-RSS" {};
1111 };
1112 };
1113 };
1114 wallabag = mkOption {
1115 description = "Wallabag configuration";
1116 type = submodule {
1117 options = {
1118 postgresql = mkPsqlOptions "Wallabag";
1119 ldap = mkLdapOptions "Wallabag" {
1120 admin_filter = mkOption { type = str; description = "Admin users filter"; };
1121 };
1122 redis = mkRedisOptions "Wallabag";
1123 secret = mkOption { type = str; description = "App secret"; };
1124 };
1125 };
1126 };
251c0a13
IB
1127 webhooks = mkOption {
1128 type = attrsOf str;
1129 description = "Mapping 'name'.php => script for webhooks";
1130 };
68c45ad5
IB
1131 csp_reports = mkOption {
1132 description = "CSP report configuration";
1133 type = submodule {
1134 options = {
1135 report_uri = mkOption { type = str; description = "URI to report CSP violations to"; };
1136 policies = mkOption { type = attrsOf str; description = "CSP policies to apply"; };
1137 postgresql = mkPsqlOptions "CSP reports";
1138 };
1139 };
1140 };
6338573a
IB
1141 commento = mkOption {
1142 description = "Commento configuration";
1143 type = submodule {
1144 options = {
1145 listenPort = mkOption { type = port; description = "Port to listen to"; };
1146 postgresql = mkPsqlOptions "Commento";
1147 smtp = mkSmtpOptions "Commento";
1148 };
1149 };
1150 };
ab8f306d
IB
1151 ympd = mkOption {
1152 description = "Ympd configuration";
1153 type = submodule {
1154 options = {
1155 listenPort = mkOption { type = port; description = "Port to listen to"; };
1156 mpd = mkOption {
1157 description = "MPD configuration";
1158 type = submodule {
1159 options = {
1160 password = mkOption { type = str; description = "Password to access MPD host"; };
1161 host = mkOption { type = str; description = "Host for MPD"; };
1162 port = mkOption { type = port; description = "Port to access MPD host"; };
1163 };
1164 };
1165 };
1166 };
1167 };
1168 };
1169 yourls = mkOption {
1170 description = "Yourls configuration";
1171 type = submodule {
1172 options = {
87a8bffd 1173 mysql = mkMysqlOptions "Yourls" {};
ab8f306d
IB
1174 ldap = mkLdapOptions "Yourls" {};
1175 cookieKey = mkOption { type = str; description = "Cookie key"; };
1176 };
1177 };
1178 };
1179 };
1180 };
1181 };
75489e72 1182 serverSpecific = mkOption { type = attrsOf unspecified; description = "Server specific configuration"; };
ab8f306d
IB
1183 websites = mkOption {
1184 description = "Websites configurations";
1185 type = submodule {
1186 options = {
91b3d06b
IB
1187 immae = mkOption {
1188 description = "Immae configuration by environment";
1189 type = submodule {
1190 options = {
1191 temp = mkOption {
1192 description = "Temp configuration";
1193 type = submodule {
1194 options = {
1195 ldap = mkLdapOptions "Immae temp" {
1196 filter = mkOption { type = str; description = "Filter for user access"; };
1197 };
1198 };
1199 };
1200 };
1201 };
1202 };
1203 };
829ef7f1
IB
1204 isabelle = mkOption {
1205 description = "Isabelle configurations by environment";
ab8f306d
IB
1206 type =
1207 let
1208 atenSubmodule = mkOption {
1209 description = "environment configuration";
1210 type = submodule {
1211 options = {
1212 environment = mkOption { type = str; description = "Symfony environment"; };
1213 secret = mkOption { type = str; description = "Symfony App secret"; };
1214 postgresql = mkPsqlOptions "Aten";
1215 };
1216 };
1217 };
1218 in
1219 submodule {
1220 options = {
829ef7f1
IB
1221 aten_production = atenSubmodule;
1222 aten_integration = atenSubmodule;
423c3f1c
IB
1223 iridologie = mkOption {
1224 description = "environment configuration";
1225 type = submodule {
1226 options = {
1227 environment = mkOption { type = str; description = "SPIP environment"; };
1228 mysql = mkMysqlOptions "Iridologie" {};
1229 ldap = mkLdapOptions "Iridologie" {};
1230 };
1231 };
1232 };
ab8f306d
IB
1233 };
1234 };
1235 };
1236 chloe = mkOption {
1237 description = "Chloe configurations by environment";
1238 type =
1239 let
1240 chloeSubmodule = mkOption {
1241 description = "environment configuration";
1242 type = submodule {
1243 options = {
423c3f1c 1244 environment = mkOption { type = str; description = "SPIP environment"; };
87a8bffd 1245 mysql = mkMysqlOptions "Chloe" {};
ab8f306d
IB
1246 ldap = mkLdapOptions "Chloe" {};
1247 };
1248 };
1249 };
1250 in
1251 submodule {
1252 options = {
1253 production = chloeSubmodule;
1254 integration = chloeSubmodule;
1255 };
1256 };
1257 };
1258 connexionswing = mkOption {
1259 description = "Connexionswing configurations by environment";
1260 type =
1261 let
1262 csSubmodule = mkOption {
1263 description = "environment configuration";
1264 type = submodule {
1265 options = {
1266 environment = mkOption { type = str; description = "Symfony environment"; };
87a8bffd 1267 mysql = mkMysqlOptions "Connexionswing" {};
ab8f306d
IB
1268 secret = mkOption { type = str; description = "Symfony App secret"; };
1269 email = mkOption { type = str; description = "Symfony email notification"; };
1270 };
1271 };
1272 };
1273 in
1274 submodule {
1275 options = {
1276 production = csSubmodule;
1277 integration = csSubmodule;
1278 };
1279 };
1280 };
1281 jerome = mkOption {
1282 description = "Naturaloutil configuration";
1283 type = submodule {
1284 options = {
87a8bffd 1285 mysql = mkMysqlOptions "Naturaloutil" {};
ab8f306d
IB
1286 server_admin = mkOption { type = str; description = "Server admin e-mail"; };
1287 };
1288 };
1289 };
d3452fc5 1290 telio_tortay = mkOption {
ab8f306d
IB
1291 description = "Telio Tortay configuration";
1292 type = submodule {
1293 options = {
1294 server_admin = mkOption { type = str; description = "Server admin e-mail"; };
1295 };
1296 };
1297 };
d3452fc5 1298 ludivine = mkOption {
ab8f306d
IB
1299 description = "Ludivinecassal configurations by environment";
1300 type =
1301 let
1302 lcSubmodule = mkOption {
1303 description = "environment configuration";
1304 type = submodule {
1305 options = {
1306 environment = mkOption { type = str; description = "Symfony environment"; };
87a8bffd 1307 mysql = mkMysqlOptions "LudivineCassal" {};
ab8f306d
IB
1308 ldap = mkLdapOptions "LudivineCassal" {};
1309 secret = mkOption { type = str; description = "Symfony App secret"; };
1310 };
1311 };
1312 };
1313 in
1314 submodule {
1315 options = {
1316 production = lcSubmodule;
1317 integration = lcSubmodule;
1318 };
1319 };
1320 };
1321 emilia = mkOption {
1322 description = "Emilia configuration";
1323 type = submodule {
1324 options = {
1325 postgresql = mkPsqlOptions "Emilia";
1326 };
1327 };
1328 };
1329 florian = mkOption {
1330 description = "Florian configuration";
1331 type = submodule {
1332 options = {
1333 server_admin = mkOption { type = str; description = "Server admin e-mail"; };
1334 };
1335 };
1336 };
1337 nassime = mkOption {
1338 description = "Nassime configuration";
1339 type = submodule {
1340 options = {
1341 server_admin = mkOption { type = str; description = "Server admin e-mail"; };
1342 };
1343 };
1344 };
1345 piedsjaloux = mkOption {
1346 description = "Piedsjaloux configurations by environment";
1347 type =
1348 let
1349 pjSubmodule = mkOption {
1350 description = "environment configuration";
1351 type = submodule {
1352 options = {
1353 environment = mkOption { type = str; description = "Symfony environment"; };
87a8bffd 1354 mysql = mkMysqlOptions "Piedsjaloux" {};
ab8f306d
IB
1355 secret = mkOption { type = str; description = "Symfony App secret"; };
1356 };
1357 };
1358 };
1359 in
1360 submodule {
1361 options = {
1362 production = pjSubmodule;
1363 integration = pjSubmodule;
1364 };
1365 };
1366 };
91b75ffe
IB
1367 richie = mkOption {
1368 description = "Europe Richie configurations by environment";
1369 type = submodule {
1370 options = {
87a8bffd 1371 mysql = mkMysqlOptions "Richie" {};
91b75ffe
IB
1372 smtp_mailer = mkOption {
1373 description = "SMTP mailer configuration";
1374 type = submodule {
1375 options = {
1376 user = mkOption { type = str; description = "Username"; };
1377 password = mkOption { type = str; description = "Password"; };
1378 };
1379 };
1380 };
1381 };
1382 };
1383 };
6c95e93c
IB
1384 caldance = mkOption {
1385 description = "Caldance configurations by environment";
1386 type = submodule {
1387 options = {
1388 integration = mkOption {
1389 description = "environment configuration";
1390 type = submodule {
1391 options = {
1392 password = mkOption { type = str; description = "Password file content for basic auth"; };
1393 };
1394 };
1395 };
1396 };
1397 };
1398 };
ab8f306d
IB
1399 tellesflorian = mkOption {
1400 description = "Tellesflorian configurations by environment";
1401 type =
1402 let
1403 tfSubmodule = mkOption {
1404 description = "environment configuration";
1405 type = submodule {
1406 options = {
1407 environment = mkOption { type = str; description = "Symfony environment"; };
87a8bffd 1408 mysql = mkMysqlOptions "Tellesflorian" {};
ab8f306d
IB
1409 secret = mkOption { type = str; description = "Symfony App secret"; };
1410 invite_passwords = mkOption { type = str; description = "Password basic auth"; };
1411 };
1412 };
1413 };
1414 in
1415 submodule {
1416 options = {
1417 integration = tfSubmodule;
1418 };
1419 };
1420 };
1421 };
1422 };
1423 };
1424
1425 privateFiles = mkOption {
1426 type = path;
1427 description = ''
1428 Path to secret files to make available during build
1429 '';
1430 };
1431 };
619e4f46
IB
1432 options.hostEnv = mkOption {
1433 readOnly = true;
1434 type = hostEnv;
1435 default = config.myEnv.servers."${name}";
1436 description = "Host environment";
ab8f306d
IB
1437 };
1438}