add postgres for fun data

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-10-09 14:27:36 -05:00
parent c22f742013
commit 9e58c21946
3 changed files with 27 additions and 2 deletions

View file

@ -0,0 +1,24 @@
{
pkgs,
...
}:
{
config = {
services.postgresql = {
enable = true;
package = pkgs.postgresql_17.withJIT;
enableJIT = true;
authentication = ''
local all all trust
host all all 127.0.0.1/8 trust
host all all ::1/128 trust
host all all fc00::1/128 trust
'';
};
# Backup database
services.postgresqlBackup = {
enable = true;
};
};
}