2022-05-31 16:45:33 +00:00
|
|
|
{ pkgs, config, lib, ... }:
|
2021-10-31 20:33:27 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.cloud.postgresql;
|
|
|
|
|
|
|
|
# From a database name, create an "ensureUser"
|
|
|
|
# entry with the same name and assign all permissions
|
|
|
|
# to that database.
|
2022-05-31 16:45:33 +00:00
|
|
|
userFromDatabase = databaseName: {
|
2021-10-31 20:33:27 +00:00
|
|
|
name = databaseName;
|
|
|
|
ensurePermissions = {
|
2023-06-24 15:50:42 +00:00
|
|
|
"DATABASE \"${databaseName}\"" = "ALL PRIVILEGES";
|
2021-10-31 20:33:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.cloud.postgresql.databases = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2022-05-31 16:45:33 +00:00
|
|
|
default = [ ];
|
2021-10-31 20:33:27 +00:00
|
|
|
description = ''
|
|
|
|
The list of databases to be created.
|
|
|
|
An user with the same name
|
|
|
|
and full access to the database will be created.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# PostgreSQL settings.
|
|
|
|
config.services.postgresql = {
|
|
|
|
enable = true;
|
2023-05-07 12:28:46 +00:00
|
|
|
package = pkgs.postgresql_15;
|
2021-10-31 20:33:27 +00:00
|
|
|
|
|
|
|
ensureDatabases = cfg.databases;
|
|
|
|
|
2023-05-04 21:06:26 +00:00
|
|
|
ensureUsers = (map userFromDatabase cfg.databases) ++ [{
|
|
|
|
name = "root";
|
|
|
|
ensurePermissions = { "ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES"; };
|
|
|
|
}];
|
2021-10-31 20:33:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Backup settings
|
|
|
|
config.services.postgresqlBackup = {
|
|
|
|
enable = true;
|
|
|
|
};
|
2023-05-07 12:28:46 +00:00
|
|
|
|
|
|
|
# Upgrade
|
|
|
|
config.environment.systemPackages = [
|
|
|
|
(
|
|
|
|
let
|
|
|
|
# XXX specify the postgresql package you'd like to upgrade to.
|
|
|
|
# Do not forget to list the extensions you need.
|
|
|
|
newPostgres = pkgs.postgresql_15.withPackages (pp: [
|
|
|
|
# pp.plv8
|
|
|
|
]);
|
|
|
|
in
|
|
|
|
pkgs.writeScriptBin "upgrade-pg-cluster" ''
|
|
|
|
set -eux
|
|
|
|
# XXX it's perhaps advisable to stop all services that depend on postgresql
|
|
|
|
systemctl stop postgresql
|
|
|
|
|
|
|
|
export NEWDATA="/var/lib/postgresql/${newPostgres.psqlSchema}"
|
|
|
|
|
|
|
|
export NEWBIN="${newPostgres}/bin"
|
|
|
|
|
|
|
|
export OLDDATA="${config.services.postgresql.dataDir}"
|
|
|
|
export OLDBIN="${config.services.postgresql.package}/bin"
|
|
|
|
|
|
|
|
install -d -m 0700 -o postgres -g postgres "$NEWDATA"
|
|
|
|
cd "$NEWDATA"
|
|
|
|
sudo -u postgres $NEWBIN/initdb -D "$NEWDATA"
|
|
|
|
|
|
|
|
sudo -u postgres $NEWBIN/pg_upgrade \
|
|
|
|
--old-datadir "$OLDDATA" --new-datadir "$NEWDATA" \
|
|
|
|
--old-bindir $OLDBIN --new-bindir $NEWBIN \
|
|
|
|
"$@"
|
|
|
|
''
|
|
|
|
)
|
|
|
|
];
|
2021-10-31 20:33:27 +00:00
|
|
|
}
|