add route for postgresql
This commit is contained in:
parent
ea1f268468
commit
486a3b6e8b
1 changed files with 6 additions and 0 deletions
|
@ -23,6 +23,12 @@
|
|||
pkgs,
|
||||
...
|
||||
}: {
|
||||
networking.interfaces.eth0.ipv6.routes = [
|
||||
{
|
||||
address = "fc00::";
|
||||
prefixLength = 64;
|
||||
}
|
||||
];
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
package = pkgs.postgresql_16;
|
||||
|
|
Loading…
Reference in a new issue