mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 10:22:54 +02:00
10 lines
230 B
Nix
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" ];
|
|
};
|
|
}
|