X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=blobdiff_plain;f=modules%2Fprivate%2Fenvironment.nix;h=ffb61c50f4fac490608f0ff11927564539b81b2c;hp=2aa8b5e272c9a9f9924e447cbed7be0594bcaa9a;hb=739d28eaf8cb226f74a7e7f5ad31fb152a90ee4b;hpb=ab8f306d7c2c49b8116e1af7b355ed2384617ed9 diff --git a/modules/private/environment.nix b/modules/private/environment.nix index 2aa8b5e..ffb61c5 100644 --- a/modules/private/environment.nix +++ b/modules/private/environment.nix @@ -1,4 +1,4 @@ -{ lib, ... }: +{ config, lib, name, ... }: with lib; with types; with lists; @@ -23,6 +23,7 @@ let }; mysqlOptions = { host = mkOption { description = "Host to access Mysql"; type = str; }; + remoteHost = mkOption { description = "Host to access Mysql from outside"; type = str; }; port = mkOption { description = "Port to access Mysql"; type = str; }; socket = mkOption { description = "Socket to access Mysql"; type = path; }; systemUsers = mkOption { @@ -40,14 +41,14 @@ let }; }; }; - mkMysqlOptions = name: mkOption { + mkMysqlOptions = name: more: mkOption { description = "${name} mysql configuration"; type = submodule { options = mysqlOptions // { database = mkOption { description = "${name} database"; type = str; }; user = mkOption { description = "${name} user"; type = str; }; password = mkOption { description = "mysql password of the ${name} user"; type = str; }; - }; + } // more; }; }; psqlOptions = { @@ -107,6 +108,63 @@ let }; }; }; + hostEnv = submodule { + options = { + fqdn = mkOption { + description = "Host FQDN"; + type = str; + }; + emails = mkOption { + default = []; + description = "List of e-mails that the server can be a sender of"; + type = listOf str; + }; + ldap = mkOption { + description = '' + LDAP credentials for the host + ''; + type = submodule { + options = { + password = mkOption { type = string; description = "Password for the LDAP connection"; }; + dn = mkOption { type = string; description = "DN for the LDAP connection"; }; + }; + }; + }; + mx = mkOption { + description = "subdomain and priority for MX server"; + default = { enable = false; }; + type = submodule { + options = { + enable = mkEnableOption "Enable MX"; + subdomain = mkOption { type = nullOr str; description = "Subdomain name (mx-*)"; }; + priority = mkOption { type = nullOr str; description = "Priority"; }; + }; + }; + }; + ips = mkOption { + description = '' + attrs of ip4/ip6 grouped by section + ''; + type = attrsOf (submodule { + options = { + ip4 = mkOption { + type = string; + description = '' + ip4 address of the host + ''; + }; + ip6 = mkOption { + type = listOf string; + default = []; + description = '' + ip6 addresses of the host + ''; + }; + }; + }); + }; + }; + }; in { options.myEnv = { @@ -115,43 +173,7 @@ in Attrs of servers information in the cluster (not necessarily handled by nixops) ''; default = {}; - type = attrsOf (submodule { - options = { - ldap = mkOption { - description = '' - LDAP credentials for the host - ''; - type = submodule { - options = { - password = mkOption { type = string; description = "Password for the LDAP connection"; }; - dn = mkOption { type = string; description = "DN for the LDAP connection"; }; - }; - }; - }; - ips = mkOption { - description = '' - attrs of ip4/ip6 grouped by section - ''; - type = attrsOf (submodule { - options = { - ip4 = mkOption { - type = string; - description = '' - ip4 address of the host - ''; - }; - ip6 = mkOption { - type = listOf string; - default = []; - description = '' - ip6 addresses of the host - ''; - }; - }; - }); - }; - }; - }); + type = attrsOf hostEnv; }; hetznerCloud = mkOption { description = '' @@ -259,6 +281,7 @@ in description = "Jabber configuration"; type = submodule { options = { + postfix_user_filter = mkOption { type = str; description = "Postfix filter to get xmpp users"; }; ldap = mkLdapOptions "Jabber" {}; postgresql = mkPsqlOptions "Jabber"; }; @@ -397,7 +420,6 @@ in ''; type = submodule { options = { - mailto = mkOption { type = str; description = "Where to e-mail on error"; }; ssh_key = mkOption { description = "SSH key information"; type = submodule { @@ -452,7 +474,30 @@ in options = { status_url = mkOption { type = str; description = "URL to push status to"; }; status_token = mkOption { type = str; description = "Token for the status url"; }; + http_user_password = mkOption { type = str; description = "HTTP credentials to check services behind wall"; }; email = mkOption { type = str; description = "Admin E-mail"; }; + ssh_public_key = mkOption { type = str; description = "SSH public key"; }; + ssh_secret_key = mkOption { type = str; description = "SSH secret key"; }; + imap_login = mkOption { type = str; description = "IMAP login"; }; + imap_password = mkOption { type = str; description = "IMAP password"; }; + eriomem_keys = mkOption { type = listOf (listOf str); description = "Eriomem keys"; default = []; }; + nrdp_tokens = mkOption { type = listOf str; description = "Tokens allowed to push status update"; }; + slack_url = mkOption { type = str; description = "Slack webhook url to push status update"; }; + slack_channel = mkOption { type = str; description = "Slack channel to push status update"; }; + contacts = mkOption { type = attrsOf unspecified; description = "Contact dicts to fill naemon objects"; }; + email_check = mkOption { + description = "Emails services to check"; + type = attrsOf (submodule { + options = { + local = mkOption { type = bool; default = false; description = "Use local configuration"; }; + port = mkOption { type = nullOr str; default = null; description = "Port to connect to ssh"; }; + login = mkOption { type = nullOr str; default = null; description = "Login to connect to ssh"; }; + targets = mkOption { type = listOf str; description = "Hosts to send E-mails to"; }; + mail_address = mkOption { type = str; description = "E-mail recipient part to send e-mail to"; }; + mail_domain = mkOption { type = str; description = "E-mail domain part to send e-mail to"; }; + }; + }); + }; }; }; }; @@ -518,7 +563,9 @@ in ''; type = listOf str; }; - mysql = mkMysqlOptions "Postfix"; + mysql = mkMysqlOptions "Postfix" { + password_encrypt = mkOption { type = str; description = "Key to encrypt relay password in database"; }; + }; backup_domains = mkOption { description = '' Domains that are accepted for relay as backup domain @@ -593,6 +640,7 @@ in description = "Mail script recipients"; type = attrsOf (submodule { options = { + external = mkEnableOption "Create a script_@mail.immae.eu external address"; src = mkOption { description = '' git source to fetch the script from. @@ -938,7 +986,7 @@ in description = "Yourls configuration"; type = submodule { options = { - mysql = mkMysqlOptions "Yourls"; + mysql = mkMysqlOptions "Yourls" {}; ldap = mkLdapOptions "Yourls" {}; cookieKey = mkOption { type = str; description = "Cookie key"; }; }; @@ -951,8 +999,8 @@ in description = "Websites configurations"; type = submodule { options = { - aten = mkOption { - description = "Aten configurations by environment"; + isabelle = mkOption { + description = "Isabelle configurations by environment"; type = let atenSubmodule = mkOption { @@ -968,8 +1016,18 @@ in in submodule { options = { - production = atenSubmodule; - integration = atenSubmodule; + aten_production = atenSubmodule; + aten_integration = atenSubmodule; + iridologie = mkOption { + description = "environment configuration"; + type = submodule { + options = { + environment = mkOption { type = str; description = "SPIP environment"; }; + mysql = mkMysqlOptions "Iridologie" {}; + ldap = mkLdapOptions "Iridologie" {}; + }; + }; + }; }; }; }; @@ -981,8 +1039,8 @@ in description = "environment configuration"; type = submodule { options = { - environment = mkOption { type = str; description = "Symfony environment"; }; - mysql = mkMysqlOptions "Chloe"; + environment = mkOption { type = str; description = "SPIP environment"; }; + mysql = mkMysqlOptions "Chloe" {}; ldap = mkLdapOptions "Chloe" {}; }; }; @@ -1004,7 +1062,7 @@ in type = submodule { options = { environment = mkOption { type = str; description = "Symfony environment"; }; - mysql = mkMysqlOptions "Connexionswing"; + mysql = mkMysqlOptions "Connexionswing" {}; secret = mkOption { type = str; description = "Symfony App secret"; }; email = mkOption { type = str; description = "Symfony email notification"; }; }; @@ -1022,7 +1080,7 @@ in description = "Naturaloutil configuration"; type = submodule { options = { - mysql = mkMysqlOptions "Naturaloutil"; + mysql = mkMysqlOptions "Naturaloutil" {}; server_admin = mkOption { type = str; description = "Server admin e-mail"; }; }; }; @@ -1044,7 +1102,7 @@ in type = submodule { options = { environment = mkOption { type = str; description = "Symfony environment"; }; - mysql = mkMysqlOptions "LudivineCassal"; + mysql = mkMysqlOptions "LudivineCassal" {}; ldap = mkLdapOptions "LudivineCassal" {}; secret = mkOption { type = str; description = "Symfony App secret"; }; }; @@ -1091,7 +1149,7 @@ in type = submodule { options = { environment = mkOption { type = str; description = "Symfony environment"; }; - mysql = mkMysqlOptions "Piedsjaloux"; + mysql = mkMysqlOptions "Piedsjaloux" {}; secret = mkOption { type = str; description = "Symfony App secret"; }; }; }; @@ -1104,6 +1162,23 @@ in }; }; }; + richie = mkOption { + description = "Europe Richie configurations by environment"; + type = submodule { + options = { + mysql = mkMysqlOptions "Richie" {}; + smtp_mailer = mkOption { + description = "SMTP mailer configuration"; + type = submodule { + options = { + user = mkOption { type = str; description = "Username"; }; + password = mkOption { type = str; description = "Password"; }; + }; + }; + }; + }; + }; + }; tellesflorian = mkOption { description = "Tellesflorian configurations by environment"; type = @@ -1113,7 +1188,7 @@ in type = submodule { options = { environment = mkOption { type = str; description = "Symfony environment"; }; - mysql = mkMysqlOptions "Tellesflorian"; + mysql = mkMysqlOptions "Tellesflorian" {}; secret = mkOption { type = str; description = "Symfony App secret"; }; invite_passwords = mkOption { type = str; description = "Password basic auth"; }; }; @@ -1137,12 +1212,10 @@ in ''; }; }; - options.hostEnv = { - FQDN = mkOption { - type = string; - description = '' - FQDN of the current host. - ''; - }; + options.hostEnv = mkOption { + readOnly = true; + type = hostEnv; + default = config.myEnv.servers."${name}"; + description = "Host environment"; }; }