nixos-config/containers/postgresql-configuration.nix

10 lines
193 B
Nix
Raw Normal View History

2024-11-15 12:41:19 +00:00
{ system, ... }:
{
inherit system;
config = import ./postgresql.nix;
autoStart = true;
privateNetwork = true;
hostBridge = "containers";
localAddress6 = "fdc6:e7e5:0ba1:1::2/64";
2024-11-15 12:41:19 +00:00
}