{ config, lib, pkgs, ... }: with lib; let cfg = config.services.pgadmin; _base = with types; [ int bool str ]; base = with types; oneOf ([ (listOf (oneOf _base)) (attrsOf (oneOf _base)) ] ++ _base); formatAttrset = attr: "{${concatStringsSep "\n" (mapAttrsToList (key: value: "${builtins.toJSON key}: ${formatPyValue value},") attr)}}"; formatPyValue = value: if builtins.isString value then builtins.toJSON value else if value ? _expr then value._expr else if builtins.isInt value then toString value else if builtins.isBool value then (if value then "True" else "False") else if builtins.isAttrs value then (formatAttrset value) else if builtins.isList value then "[${concatStringsSep "\n" (map (v: "${formatPyValue v},") value)}]" else throw "Unrecognized type"; formatPy = attrs: concatStringsSep "\n" (mapAttrsToList (key: value: "${key} = ${formatPyValue value}") attrs); pyType = with types; attrsOf (oneOf [ (attrsOf base) (listOf base) base ]); in { options.services.pgadmin = { enable = mkEnableOption (lib.mdDoc "PostgreSQL Admin 4"); port = mkOption { description = lib.mdDoc "Port for pgadmin4 to run on"; type = types.port; default = 5050; }; package = mkPackageOptionMD pkgs "pgadmin4" { }; initialEmail = mkOption { description = lib.mdDoc "Initial email for the pgAdmin account"; type = types.str; }; initialPasswordFile = mkOption { description = lib.mdDoc '' Initial password file for the pgAdmin account. Minimum length by default is 6. Please see `services.pgadmin.minimumPasswordLength`. NOTE: Should be string not a store path, to prevent the password from being world readable ''; type = types.path; }; minimumPasswordLength = mkOption { description = lib.mdDoc "Minimum length of the password"; type = types.int; default = 6; }; emailServer = { enable = mkOption { description = lib.mdDoc '' Enable SMTP email server. This is necessary, if you want to use password recovery or change your own password ''; type = types.bool; default = false; }; address = mkOption { description = lib.mdDoc "SMTP server for email delivery"; type = types.str; default = "localhost"; }; port = mkOption { description = lib.mdDoc "SMTP server port for email delivery"; type = types.port; default = 25; }; useSSL = mkOption { description = lib.mdDoc "SMTP server should use SSL"; type = types.bool; default = false; }; useTLS = mkOption { description = lib.mdDoc "SMTP server should use TLS"; type = types.bool; default = false; }; username = mkOption { description = lib.mdDoc "SMTP server username for email delivery"; type = types.nullOr types.str; default = null; }; sender = mkOption { description = lib.mdDoc '' SMTP server sender email for email delivery. Some servers require this to be a valid email address from that server ''; type = types.str; example = "noreply@example.com"; }; passwordFile = mkOption { description = lib.mdDoc '' Password for SMTP email account. NOTE: Should be string not a store path, to prevent the password from being world readable ''; type = types.path; }; }; openFirewall = mkEnableOption (lib.mdDoc "firewall passthrough for pgadmin4"); settings = mkOption { description = lib.mdDoc '' Settings for pgadmin4. [Documentation](https://www.pgadmin.org/docs/pgadmin4/development/config_py.html) ''; type = pyType; default = { }; }; }; config = mkIf (cfg.enable) { networking.firewall.allowedTCPPorts = mkIf (cfg.openFirewall) [ cfg.port ]; services.pgadmin.settings = { DEFAULT_SERVER_PORT = cfg.port; PASSWORD_LENGTH_MIN = cfg.minimumPasswordLength; SERVER_MODE = true; UPGRADE_CHECK_ENABLED = false; } // (optionalAttrs cfg.openFirewall { DEFAULT_SERVER = mkDefault "::"; }) // (optionalAttrs cfg.emailServer.enable { MAIL_SERVER = cfg.emailServer.address; MAIL_PORT = cfg.emailServer.port; MAIL_USE_SSL = cfg.emailServer.useSSL; MAIL_USE_TLS = cfg.emailServer.useTLS; MAIL_USERNAME = cfg.emailServer.username; SECURITY_EMAIL_SENDER = cfg.emailServer.sender; }); systemd.services.pgadmin = { wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; requires = [ "network.target" ]; # we're adding this optionally so just in case there's any race it'll be caught # in case postgres doesn't start, pgadmin will just start normally wants = [ "postgresql.service" ]; path = [ config.services.postgresql.package pkgs.coreutils pkgs.bash ]; preStart = '' # NOTE: this is idempotent (aka running it twice has no effect) # Check here for password length to prevent pgadmin from starting # and presenting a hard to find error message # see https://github.com/NixOS/nixpkgs/issues/270624 PW_LENGTH=$(wc -m < ${escapeShellArg cfg.initialPasswordFile}) if [ $PW_LENGTH -lt ${toString cfg.minimumPasswordLength} ]; then echo "Password must be at least ${toString cfg.minimumPasswordLength} characters long" exit 1 fi ( # Email address: echo ${escapeShellArg cfg.initialEmail} # file might not contain newline. echo hack fixes that. PW=$(cat ${escapeShellArg cfg.initialPasswordFile}) # Password: echo "$PW" # Retype password: echo "$PW" ) | ${cfg.package}/bin/pgadmin4-cli setup-db ''; restartTriggers = [ "/etc/pgadmin/config_system.py" ]; serviceConfig = { User = "pgadmin"; DynamicUser = true; LogsDirectory = "pgadmin"; StateDirectory = "pgadmin"; ExecStart = "${cfg.package}/bin/pgadmin4"; }; }; users.users.pgadmin = { isSystemUser = true; group = "pgadmin"; }; users.groups.pgadmin = { }; environment.etc."pgadmin/config_system.py" = { text = lib.optionalString cfg.emailServer.enable '' with open("${cfg.emailServer.passwordFile}") as f: pw = f.read() MAIL_PASSWORD = pw '' + formatPy cfg.settings; mode = "0600"; user = "pgadmin"; group = "pgadmin"; }; }; }