remove the postgres settings that maybe crash

This commit is contained in:
Danilo Reyes 2024-01-07 00:57:03 -06:00
parent 8280f66d0c
commit 5618d312a4

View File

@ -226,13 +226,6 @@ in {
host all all ${localhost}/32 trust host all all ${localhost}/32 trust
host all all ::1/128 trust host all all ::1/128 trust
''; '';
settings = {
dynamic_shared_memory_type = "posix";
max_connections = 100;
max_wal_size = "1GB";
min_wal_size = "80MB";
shared_buffers = "128MB";
};
}; };
}; };
systemd = { systemd = {
@ -247,7 +240,6 @@ in {
serviceConfig = { serviceConfig = {
Restart = "on-failure"; Restart = "on-failure";
RestartSec = 30; RestartSec = 30;
# ${config.services.nextcloud.package}
ExecStart = "${jawzNextcloudCronjob}/bin/nextcloud-cronjob"; ExecStart = "${jawzNextcloudCronjob}/bin/nextcloud-cronjob";
}; };
}; };