8 lines
120 B
Nix
8 lines
120 B
Nix
|
{ system, ... }:
|
||
|
{
|
||
|
inherit system;
|
||
|
config = import ./postgresql.nix;
|
||
|
autoStart = true;
|
||
|
privateNetwork = true;
|
||
|
}
|