10 lines
172 B
Nix
10 lines
172 B
Nix
|
{ lib, ... }: {
|
||
|
services.postgres = {
|
||
|
enable = true;
|
||
|
enableTCPIP = true;
|
||
|
authentication = [
|
||
|
"host all all fd0d:a262:1fa6:e621::/64 md5;"
|
||
|
];
|
||
|
};
|
||
|
}
|