mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 02:14:13 -05:00
13 lines
230 B
Nix
13 lines
230 B
Nix
{
|
|
services.postgresql.enable = true;
|
|
|
|
environment.persistence = {
|
|
"/persist".directories = [{
|
|
directory = "/var/lib/postgresql";
|
|
user = "postgres";
|
|
group = "postgres";
|
|
mode = "0700";
|
|
}];
|
|
};
|
|
}
|