Upgrade nixpkgs to 24.05

This commit is contained in:
Amanda Graven 2024-08-03 20:40:14 +02:00
parent aa404c2de6
commit b1ff58b3d9
Signed by: amanda
GPG key ID: F747582C5608F4CB
4 changed files with 27 additions and 17 deletions

View file

@ -4,7 +4,7 @@
enable = true;
hostName = "cloud.graven.dev";
https = true;
package = pkgs.nextcloud27;
package = pkgs.nextcloud29;
autoUpdateApps.enable = true;
maxUploadSize = "10G";
webfinger = true;
@ -14,9 +14,12 @@
dbuser = "nextcloud";
dbhost = "/run/postgresql"; # nextcloud will add /.s.PGSQL.5432 by itself
dbname = "nextcloud";
defaultPhoneRegion = "DK";
adminpassFile = builtins.toString config.secrets.files.nc_admin_pass.file;
adminuser = "root";
};
settings = {
default_phone_region = "DK";
};
phpOptions."opcache.interned_strings_buffer" = "23";
};
}