7 lines
102 B
Nix
7 lines
102 B
Nix
|
{ pkgs, config, ...}: {
|
||
|
services.postgresql = {
|
||
|
enable = true;
|
||
|
settings.port = 5432;
|
||
|
};
|
||
|
}
|