treewide: Upgrade to NixOS 23.11

This commit is contained in:
Tristan Daniël Maat 2023-12-29 16:11:46 +01:00
parent 4a966412b8
commit ebc45a9af1
Signed by: tlater
GPG key ID: 49670FD774E43268
5 changed files with 54 additions and 42 deletions
configuration/services

View file

@ -11,7 +11,6 @@ in {
inherit hostName;
package = nextcloud;
enableBrokenCiphersForSSE = false;
enable = true;
maxUploadSize = "2G";
https = true;
@ -30,11 +29,9 @@ in {
defaultPhoneRegion = "AT";
};
phpOptions =
options.services.nextcloud.phpOptions.default
// {
"opcache.interned_strings_buffer" = "16";
};
phpOptions = {
"opcache.interned_strings_buffer" = "16";
};
extraApps = {
inherit (pkgs.local) bookmarks calendar contacts cookbook news notes;

View file

@ -18,15 +18,11 @@
ensureUsers = [
{
name = "grafana";
ensurePermissions = {
"DATABASE grafana" = "ALL PRIVILEGES";
};
ensureDBOwnership = true;
}
{
name = "nextcloud";
ensurePermissions = {
"DATABASE nextcloud" = "ALL PRIVILEGES";
};
ensureDBOwnership = true;
}
];