refactor: reorder nextcloud.nix configurations
Reorganized the configuration blocks for better readability. The `enabledPreviewProviders` list and `phpOptions` section now follow a more logical structure.
This commit is contained in:
parent
af5c62eb4b
commit
82c476bd75
|
@ -16,18 +16,7 @@
|
||||||
mail_smtpmode = "sendmail";
|
mail_smtpmode = "sendmail";
|
||||||
mail_sendmailmode = "pipe";
|
mail_sendmailmode = "pipe";
|
||||||
default_phone_region = "DE";
|
default_phone_region = "DE";
|
||||||
};
|
enabledPreviewProviders = [
|
||||||
phpOptions = {
|
|
||||||
upload_max_filesize = lib.mkForce "1G";
|
|
||||||
post_max_size = lib.mkForce "1G";
|
|
||||||
"opcache.interned_strings_buffer" = "16";
|
|
||||||
};
|
|
||||||
config.adminpassFile = "/etc/nextcloud-admin-pass";
|
|
||||||
config.dbtype = "pgsql";
|
|
||||||
config.dbname = "nextcloud";
|
|
||||||
config.dbhost = "/run/postgresql";
|
|
||||||
config.dbuser = "nextcloud";
|
|
||||||
extraOptions.enabledPreviewProviders = [
|
|
||||||
"OC\\Preview\\BMP"
|
"OC\\Preview\\BMP"
|
||||||
"OC\\Preview\\GIF"
|
"OC\\Preview\\GIF"
|
||||||
"OC\\Preview\\HEIC"
|
"OC\\Preview\\HEIC"
|
||||||
|
@ -45,6 +34,17 @@
|
||||||
"OC\\Preview\\XBitmap"
|
"OC\\Preview\\XBitmap"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
phpOptions = {
|
||||||
|
upload_max_filesize = lib.mkForce "1G";
|
||||||
|
post_max_size = lib.mkForce "1G";
|
||||||
|
"opcache.interned_strings_buffer" = "16";
|
||||||
|
};
|
||||||
|
config.adminpassFile = "/etc/nextcloud-admin-pass";
|
||||||
|
config.dbtype = "pgsql";
|
||||||
|
config.dbname = "nextcloud";
|
||||||
|
config.dbhost = "/run/postgresql";
|
||||||
|
config.dbuser = "nextcloud";
|
||||||
|
};
|
||||||
|
|
||||||
services.postgresql = {
|
services.postgresql = {
|
||||||
ensureDatabases = [
|
ensureDatabases = [
|
||||||
|
|
Loading…
Reference in a new issue