1
Fork 0
satellite/hosts/nixos/common/optional/services/postgres.nix

8 lines
156 B
Nix
Raw Normal View History

2024-03-11 15:46:27 +01:00
{
2024-04-01 11:29:34 +02:00
environment.persistence."/persist/state".directories = [{
directory = "/var/lib/postgresql";
user = "postgres";
group = "postgres";
}];
2024-03-11 15:46:27 +01:00
}