feat: update nextcloud settings in nix configuration

Move 'default_phone_region' setting to the proper place. The previous erroneous location of the following setting `default_phone_region` was fixed and moved under `settings` where the rest of the options reside. The configuration now aligns with the expected structure.
This commit is contained in:
Harald Hoyer 2024-06-12 10:44:55 +02:00
parent e664773fe3
commit bd8d27e40e

View file

@ -10,9 +10,10 @@
hostName = "nc.hoyer.xyz"; hostName = "nc.hoyer.xyz";
https = true; https = true;
configureRedis = true; configureRedis = true;
extraOptions = { settings = {
mail_smtpmode = "sendmail"; mail_smtpmode = "sendmail";
mail_sendmailmode = "pipe"; mail_sendmailmode = "pipe";
default_phone_region = "DE";
}; };
phpOptions = { phpOptions = {
upload_max_filesize = lib.mkForce "1G"; upload_max_filesize = lib.mkForce "1G";
@ -24,6 +25,5 @@
config.dbname = "nextcloud"; config.dbname = "nextcloud";
config.dbhost = "/run/postgresql"; config.dbhost = "/run/postgresql";
config.dbuser = "nextcloud"; config.dbuser = "nextcloud";
settings.default_phone_region = "DE";
}; };
} }