Compare commits

...

2 Commits

2 changed files with 12 additions and 8 deletions

View File

@ -66,9 +66,12 @@
};
nix = {
settings.trusted-users = [
"hydra"
];
settings = {
trusted-users = [
"hydra"
];
allowed-uris = "http:// https://";
};
extraOptions = ''
secret-key-files = ${config.age.secrets."keys/nixsign".path}

View File

@ -9,15 +9,18 @@
enable = true;
hostName = "cloud.kabtop.de";
https = true;
package = pkgs.nextcloud27;
package = pkgs.nextcloud29;
database.createLocally = false;
logType = "file";
notify_push.enable = true;
caching = {
redis = true;
apcu = false;
};
extraOptions = {
settings = {
log_type = "file";
logfile = "nextcloud.log";
overwriteprotocol = "https";
default_phone_region = "DE";
redis = {
host = "/run/redis-nextcloud/redis.sock";
port = 0;
@ -34,8 +37,6 @@
adminuser = "kabbone";
adminpassFile = config.age.secrets."services/nextcloud/adminpassFile".path;
dbpassFile = config.age.secrets."services/nextcloud/dbpassFile".path;
overwriteProtocol = "https";
defaultPhoneRegion = "DE";
};
phpOptions = {
"opcache.interned_strings_buffer" = "16";