12 lines
155 B
Nix
12 lines
155 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.postgresql = {
|
|
enable = true;
|
|
enableJIT = true;
|
|
initdbArgs = [
|
|
"--locale=C"
|
|
"--encoding=UTF8"
|
|
];
|
|
};
|
|
}
|