Files
2026-03-15 18:31:53 +01:00

10 lines
230 B
Nix

{ config, pkgs, lib, ... }: {
# Enable PostgreSQL using the infrastructure module
infrastructure.postgresql = {
enable = true;
bindToIp = "127.0.0.1";
bindToPort = 5432;
initialDatabases = [ "testdb" ];
};
}