1
0
Fork 0
dotfiles/system/nixos/postgresql.nix

59 lines
1.5 KiB
Nix
Raw Normal View History

2023-12-15 19:42:43 +00:00
{ pkgs, config, ... }:
{
services.postgresql = {
enable = true;
2023-12-15 19:42:43 +00:00
package = pkgs.postgresql_16_jit;
2023-11-23 20:33:39 +00:00
enableJIT = true;
enableTCPIP = true;
settings = {
full_page_writes = "off";
wal_init_zero = "off";
wal_recycle = "off";
2023-11-23 20:33:39 +00:00
track_activities = "on";
track_counts = "on";
autovacuum = "on";
};
authentication = ''
2023-09-28 20:46:48 +00:00
host all all 100.64.10.3/32 md5
host all all 10.88.0.0/16 md5
'';
};
networking.firewall.interfaces."tailscale0".allowedTCPPorts = [ 5432 ];
2023-12-15 19:42:43 +00:00
# See: https://nixos.org/manual/nixos/unstable/#module-services-postgres-upgrading
environment.systemPackages = [
(
let
newPostgres = pkgs.postgresql_16_jit;
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 \
"$@"
''
)
];
}