X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=blobdiff_plain;f=modules%2Fprivate%2Fenvironment.nix;h=ffb61c50f4fac490608f0ff11927564539b81b2c;hp=5f5f6c86c43c3377257bcc0c60043bde60e9e3ff;hb=739d28eaf8cb226f74a7e7f5ad31fb152a90ee4b;hpb=87a8bffd2dd9fc0cab3ede58d39c6fe963969ff0 diff --git a/modules/private/environment.nix b/modules/private/environment.nix index 5f5f6c8..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 { @@ -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,48 +173,7 @@ in Attrs of servers information in the cluster (not necessarily handled by nixops) ''; default = {}; - type = attrsOf (submodule { - options = { - 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"; }; - }; - }; - }; - 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 = '' @@ -403,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 { @@ -464,10 +480,24 @@ in 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"; }; + }; + }); + }; }; }; }; @@ -988,6 +1018,16 @@ in options = { 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" {}; + }; + }; + }; }; }; }; @@ -999,7 +1039,7 @@ in description = "environment configuration"; type = submodule { options = { - environment = mkOption { type = str; description = "Symfony environment"; }; + environment = mkOption { type = str; description = "SPIP environment"; }; mysql = mkMysqlOptions "Chloe" {}; ldap = mkLdapOptions "Chloe" {}; }; @@ -1172,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"; }; }