feat: update defaultPhoneRegion config in nextcloud.nix

This commit removes the defaultPhoneRegion from the config section and sets it in the settings section in nextcloud.nix file. This reorganization improves the structure and readability of the configuration.
This commit is contained in:
Harald Hoyer 2024-06-11 10:35:11 +02:00
parent dd6bdf3c3f
commit 5b768bee9a

View file

@ -20,10 +20,10 @@
"opcache.interned_strings_buffer" = "16";
};
config.adminpassFile = "/etc/nextcloud-admin-pass";
config.defaultPhoneRegion = "DE";
config.dbtype = "pgsql";
config.dbname = "nextcloud";
config.dbhost = "/run/postgresql";
config.dbuser = "nextcloud";
settings.default_phone_region = "DE";
};
}