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:
parent
e664773fe3
commit
bd8d27e40e
|
@ -10,9 +10,10 @@
|
|||
hostName = "nc.hoyer.xyz";
|
||||
https = true;
|
||||
configureRedis = true;
|
||||
extraOptions = {
|
||||
settings = {
|
||||
mail_smtpmode = "sendmail";
|
||||
mail_sendmailmode = "pipe";
|
||||
default_phone_region = "DE";
|
||||
};
|
||||
phpOptions = {
|
||||
upload_max_filesize = lib.mkForce "1G";
|
||||
|
@ -24,6 +25,5 @@
|
|||
config.dbname = "nextcloud";
|
||||
config.dbhost = "/run/postgresql";
|
||||
config.dbuser = "nextcloud";
|
||||
settings.default_phone_region = "DE";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue