2017-07-02 16:39:07 +00:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
let
|
2022-06-04 00:13:38 +00:00
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
cfg = config.services.postgresql;
|
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
postgresql =
|
|
|
|
|
if cfg.extraPlugins == []
|
|
|
|
|
then cfg.package
|
|
|
|
|
else cfg.package.withPackages (_: cfg.extraPlugins);
|
|
|
|
|
|
|
|
|
|
toStr = value:
|
|
|
|
|
if true == value then "yes"
|
|
|
|
|
else if false == value then "no"
|
|
|
|
|
else if isString value then "'${lib.replaceStrings ["'"] ["''"] value}'"
|
|
|
|
|
else toString value;
|
|
|
|
|
|
|
|
|
|
# The main PostgreSQL configuration file.
|
|
|
|
|
configFile = pkgs.writeTextDir "postgresql.conf" (concatStringsSep "\n" (mapAttrsToList (n: v: "${n} = ${toStr v}") cfg.settings));
|
|
|
|
|
|
|
|
|
|
configFileCheck = pkgs.runCommand "postgresql-configfile-check" {} ''
|
|
|
|
|
${cfg.package}/bin/postgres -D${configFile} -C config_file >/dev/null
|
|
|
|
|
touch $out
|
|
|
|
|
'';
|
2019-03-24 21:20:00 +00:00
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
groupAccessAvailable = versionAtLeast postgresql.version "11.0";
|
2019-03-24 21:20:00 +00:00
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
2022-06-04 00:13:38 +00:00
|
|
|
|
imports = [
|
|
|
|
|
(mkRemovedOptionModule [ "services" "postgresql" "extraConfig" ] "Use services.postgresql.settings instead.")
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
options = {
|
2022-06-04 00:13:38 +00:00
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
services.postgresql = {
|
2022-06-04 00:13:38 +00:00
|
|
|
|
|
2024-04-14 21:02:32 +00:00
|
|
|
|
enable = mkEnableOption "PostgreSQL Server";
|
2017-07-02 16:39:07 +00:00
|
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
|
type = types.package;
|
2022-06-04 00:13:38 +00:00
|
|
|
|
example = literalExpression "pkgs.postgresql_11";
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
PostgreSQL package to use.
|
|
|
|
|
'';
|
2017-07-02 16:39:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
|
type = types.int;
|
|
|
|
|
default = 5432;
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
The port on which PostgreSQL listens.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
checkConfig = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = "Check the syntax of the configuration file at compile time";
|
2017-07-02 16:39:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
dataDir = mkOption {
|
|
|
|
|
type = types.path;
|
2022-06-04 00:13:38 +00:00
|
|
|
|
defaultText = literalExpression ''"/var/lib/postgresql/''${config.services.postgresql.package.psqlSchema}"'';
|
|
|
|
|
example = "/var/lib/postgresql/11";
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
The data directory for PostgreSQL. If left as the default value
|
|
|
|
|
this directory will automatically be created before the PostgreSQL server starts, otherwise
|
|
|
|
|
the sysadmin is responsible for ensuring the directory exists with appropriate ownership
|
|
|
|
|
and permissions.
|
|
|
|
|
'';
|
2017-07-02 16:39:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
authentication = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
Defines how users authenticate themselves to the server. See the
|
2023-06-22 11:21:32 +00:00
|
|
|
|
[
|
|
|
|
|
PostgreSQL documentation for pg_hba.conf](https://www.postgresql.org/docs/current/auth-pg-hba-conf.html)
|
2022-06-04 00:13:38 +00:00
|
|
|
|
for details on the expected format of this option. By default,
|
|
|
|
|
peer based authentication will be used for users connecting
|
|
|
|
|
via the Unix socket, and md5 password authentication will be
|
|
|
|
|
used for users connecting via TCP. Any added rules will be
|
|
|
|
|
inserted above the default rules. If you'd like to replace the
|
2023-06-22 11:21:32 +00:00
|
|
|
|
default rules entirely, you can use `lib.mkForce` in your
|
2022-06-04 00:13:38 +00:00
|
|
|
|
module.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
identMap = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
Defines the mapping from system users to database users.
|
|
|
|
|
|
|
|
|
|
The general form is:
|
|
|
|
|
|
|
|
|
|
map-name system-username database-username
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
initdbArgs = mkOption {
|
|
|
|
|
type = with types; listOf str;
|
|
|
|
|
default = [];
|
|
|
|
|
example = [ "--data-checksums" "--allow-group-access" ];
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2023-06-22 11:21:32 +00:00
|
|
|
|
Additional arguments passed to `initdb` during data dir
|
2022-06-04 00:13:38 +00:00
|
|
|
|
initialisation.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
initialScript = mkOption {
|
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
|
default = null;
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
A file containing SQL statements to execute on first startup.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ensureDatabases = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = [];
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
Ensures that the specified databases exist.
|
|
|
|
|
This option will never delete existing databases, especially not when the value of this
|
|
|
|
|
option is changed. This means that databases created once through this option or
|
|
|
|
|
otherwise have to be removed manually.
|
|
|
|
|
'';
|
|
|
|
|
example = [
|
|
|
|
|
"gitea"
|
|
|
|
|
"nextcloud"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ensureUsers = mkOption {
|
|
|
|
|
type = types.listOf (types.submodule {
|
|
|
|
|
options = {
|
|
|
|
|
name = mkOption {
|
|
|
|
|
type = types.str;
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
Name of the user to ensure.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
ensurePermissions = mkOption {
|
|
|
|
|
type = types.attrsOf types.str;
|
|
|
|
|
default = {};
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
Permissions to ensure for the user, specified as an attribute set.
|
|
|
|
|
The attribute names specify the database and tables to grant the permissions for.
|
|
|
|
|
The attribute values specify the permissions to grant. You may specify one or
|
|
|
|
|
multiple comma-separated SQL privileges here.
|
|
|
|
|
|
|
|
|
|
For more information on how to specify the target
|
|
|
|
|
and on which privileges exist, see the
|
2023-06-22 11:21:32 +00:00
|
|
|
|
[GRANT syntax](https://www.postgresql.org/docs/current/sql-grant.html).
|
|
|
|
|
The attributes are used as `GRANT ''${attrValue} ON ''${attrName}`.
|
2022-06-04 00:13:38 +00:00
|
|
|
|
'';
|
|
|
|
|
example = literalExpression ''
|
|
|
|
|
{
|
|
|
|
|
"DATABASE \"nextcloud\"" = "ALL PRIVILEGES";
|
|
|
|
|
"ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES";
|
|
|
|
|
}
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
default = [];
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
Ensures that the specified users exist and have at least the ensured permissions.
|
|
|
|
|
The PostgreSQL users will be identified using peer authentication. This authenticates the Unix user with the
|
|
|
|
|
same name only, and that without the need for a password.
|
|
|
|
|
This option will never delete existing users or remove permissions, especially not when the value of this
|
|
|
|
|
option is changed. This means that users created and permissions assigned once through this option or
|
|
|
|
|
otherwise have to be removed manually.
|
|
|
|
|
'';
|
|
|
|
|
example = literalExpression ''
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
name = "nextcloud";
|
|
|
|
|
ensurePermissions = {
|
|
|
|
|
"DATABASE nextcloud" = "ALL PRIVILEGES";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
name = "superuser";
|
|
|
|
|
ensurePermissions = {
|
|
|
|
|
"ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
'';
|
2019-05-29 08:21:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
enableTCPIP = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2017-07-02 16:39:07 +00:00
|
|
|
|
Whether PostgreSQL should listen on all network interfaces.
|
|
|
|
|
If disabled, the database can only be accessed via its Unix
|
|
|
|
|
domain socket or via TCP connections to localhost.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
logLinePrefix = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = "[%p] ";
|
|
|
|
|
example = "%m [%p] ";
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
A printf-style string that is output at the beginning of each log line.
|
2023-06-22 11:21:32 +00:00
|
|
|
|
Upstream default is `'%m [%p] '`, i.e. it includes the timestamp. We do
|
2022-06-04 00:13:38 +00:00
|
|
|
|
not include the timestamp, because journal has it anyway.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-24 21:20:00 +00:00
|
|
|
|
extraPlugins = mkOption {
|
|
|
|
|
type = types.listOf types.path;
|
|
|
|
|
default = [];
|
2022-06-04 00:13:38 +00:00
|
|
|
|
example = literalExpression "with pkgs.postgresql_11.pkgs; [ postgis pg_repack ]";
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
List of PostgreSQL plugins. PostgreSQL version for each plugin should
|
2023-06-22 11:21:32 +00:00
|
|
|
|
match version for `services.postgresql.package` value.
|
2019-03-24 21:20:00 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
settings = mkOption {
|
|
|
|
|
type = with types; attrsOf (oneOf [ bool float int str ]);
|
|
|
|
|
default = {};
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
PostgreSQL configuration. Refer to
|
2023-06-22 11:21:32 +00:00
|
|
|
|
<https://www.postgresql.org/docs/11/config-setting.html#CONFIG-SETTING-CONFIGURATION-FILE>
|
|
|
|
|
for an overview of `postgresql.conf`.
|
2022-06-04 00:13:38 +00:00
|
|
|
|
|
2023-06-22 11:21:32 +00:00
|
|
|
|
::: {.note}
|
2023-10-16 21:31:15 +00:00
|
|
|
|
|
2023-06-22 01:34:49 +00:00
|
|
|
|
String values will automatically be enclosed in single quotes. Single quotes will be
|
|
|
|
|
escaped with two single quotes as described by the upstream documentation linked above.
|
2023-10-16 21:31:15 +00:00
|
|
|
|
|
2023-06-22 11:21:32 +00:00
|
|
|
|
:::
|
2022-06-04 00:13:38 +00:00
|
|
|
|
'';
|
|
|
|
|
example = literalExpression ''
|
|
|
|
|
{
|
|
|
|
|
log_connections = true;
|
|
|
|
|
log_statement = "all";
|
|
|
|
|
logging_collector = true
|
|
|
|
|
log_disconnections = true
|
|
|
|
|
log_destination = lib.mkForce "syslog";
|
|
|
|
|
}
|
|
|
|
|
'';
|
2017-07-02 16:39:07 +00:00
|
|
|
|
};
|
2022-06-04 00:13:38 +00:00
|
|
|
|
|
|
|
|
|
recoveryConfig = mkOption {
|
|
|
|
|
type = types.nullOr types.lines;
|
|
|
|
|
default = null;
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2023-06-22 11:21:32 +00:00
|
|
|
|
Contents of the {file}`recovery.conf` file.
|
2022-06-04 00:13:38 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
superUser = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = "postgres";
|
|
|
|
|
internal = true;
|
|
|
|
|
readOnly = true;
|
2024-04-14 21:02:32 +00:00
|
|
|
|
description = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
PostgreSQL superuser account to use for various operations. Internal since changing
|
|
|
|
|
this value would lead to breakage while setting up databases.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2017-07-02 16:39:07 +00:00
|
|
|
|
};
|
2022-06-04 00:13:38 +00:00
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
###### implementation
|
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
# FIXME: implement. I didn't implement these because they require some
|
|
|
|
|
# sort of postStart facility, which launchd does not provide.
|
|
|
|
|
#
|
|
|
|
|
# one could perhaps trigger another agent by the existing agent, but
|
|
|
|
|
# I couldn't find how to do that.
|
|
|
|
|
warnings = if cfg.initialScript != null
|
|
|
|
|
|| cfg.ensureDatabases != []
|
|
|
|
|
|| cfg.ensureUsers != []
|
|
|
|
|
then [''
|
|
|
|
|
Currently nix-darwin does not support postgresql initialScript,
|
|
|
|
|
ensureDatabases, or ensureUsers
|
|
|
|
|
'']
|
|
|
|
|
else [];
|
|
|
|
|
|
|
|
|
|
services.postgresql.settings =
|
|
|
|
|
{
|
|
|
|
|
hba_file = "${pkgs.writeText "pg_hba.conf" cfg.authentication}";
|
|
|
|
|
ident_file = "${pkgs.writeText "pg_ident.conf" cfg.identMap}";
|
|
|
|
|
log_destination = "stderr";
|
|
|
|
|
log_line_prefix = cfg.logLinePrefix;
|
|
|
|
|
listen_addresses = if cfg.enableTCPIP then "*" else "localhost";
|
|
|
|
|
port = cfg.port;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.postgresql.package = let
|
|
|
|
|
mkThrow = ver: throw "postgresql_${ver} was removed, please upgrade your postgresql version.";
|
|
|
|
|
in
|
|
|
|
|
# Note: when changing the default, make it conditional on
|
|
|
|
|
# ‘system.stateVersion’ to maintain compatibility with existing
|
|
|
|
|
# systems!
|
|
|
|
|
mkDefault (if config.system.stateVersion >= 4 then pkgs.postgresql_14
|
|
|
|
|
else mkThrow "9_6");
|
|
|
|
|
|
|
|
|
|
services.postgresql.dataDir = mkDefault "/var/lib/postgresql/${cfg.package.psqlSchema}";
|
|
|
|
|
|
|
|
|
|
services.postgresql.authentication = mkAfter
|
|
|
|
|
''
|
|
|
|
|
# Generated file; do not edit!
|
|
|
|
|
local all all peer
|
|
|
|
|
host all all 127.0.0.1/32 md5
|
|
|
|
|
host all all ::1/128 md5
|
|
|
|
|
'';
|
|
|
|
|
|
2019-03-24 21:20:00 +00:00
|
|
|
|
environment.systemPackages = [ postgresql ];
|
2017-07-02 16:39:07 +00:00
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
environment.pathsToLink = [
|
|
|
|
|
"/share/postgresql"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# FIXME: implement system.extraDependencies to do this less sketchily
|
|
|
|
|
# system.extraDependencies = lib.optional (cfg.checkConfig && pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform) configFileCheck;
|
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
launchd.user.agents.postgresql =
|
2019-03-24 21:20:00 +00:00
|
|
|
|
{ path = [ postgresql ];
|
2017-07-02 16:39:07 +00:00
|
|
|
|
script = ''
|
2022-06-04 00:13:38 +00:00
|
|
|
|
# FIXME: ${if cfg.checkConfig then configFileCheck else ""}
|
|
|
|
|
|
2017-07-02 16:39:07 +00:00
|
|
|
|
if ! test -e ${cfg.dataDir}/PG_VERSION; then
|
2022-06-04 00:13:38 +00:00
|
|
|
|
# Cleanup the data directory.
|
|
|
|
|
${pkgs.coreutils}/bin/rm -f ${cfg.dataDir}/*.conf
|
|
|
|
|
|
|
|
|
|
# Initialise the database.
|
|
|
|
|
${postgresql}/bin/initdb -U ${cfg.superUser} ${concatStringsSep " " cfg.initdbArgs}
|
|
|
|
|
|
|
|
|
|
# See postStart!
|
|
|
|
|
# FIXME: implement postStart
|
|
|
|
|
# touch "${cfg.dataDir}/.first_startup"
|
2017-07-02 16:39:07 +00:00
|
|
|
|
fi
|
|
|
|
|
|
2022-06-04 00:13:38 +00:00
|
|
|
|
${pkgs.coreutils}/bin/ln -sfn ${configFile}/postgresql.conf ${cfg.dataDir}/postgresql.conf
|
|
|
|
|
${optionalString (cfg.recoveryConfig != null) ''
|
|
|
|
|
${pkgs.coreutils}/bin/ln -sfn "${pkgs.writeText "recovery.conf" cfg.recoveryConfig}" \
|
|
|
|
|
"${cfg.dataDir}/recovery.conf"
|
|
|
|
|
''}
|
|
|
|
|
|
2023-10-16 21:31:15 +00:00
|
|
|
|
exec ${postgresql}/bin/postgres
|
2017-07-02 16:39:07 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
serviceConfig.KeepAlive = true;
|
|
|
|
|
serviceConfig.RunAtLoad = true;
|
2023-10-16 21:31:15 +00:00
|
|
|
|
serviceConfig.EnvironmentVariables = {
|
|
|
|
|
PGDATA = cfg.dataDir;
|
|
|
|
|
};
|
2017-07-02 16:39:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
}
|