Upgrade stable to 23.05

This commit is contained in:
Greg Hellings
2023-05-29 02:42:37 +00:00
parent 64e0ed0b6f
commit 18c165663d
7 changed files with 13 additions and 17 deletions
+3 -6
View File
@@ -23,22 +23,19 @@ in {
services.gitea = rec {
enable = true;
appName = "Greg's Sources";
cookieSecure = true;
database = {
type = "postgres";
user = "gitea";
};
disableRegistration = true;
domain = srcDomain;
dump = {
enable = true;
type = "tar.xz";
};
settings = {
server.HTTP_PORT = 3001;
};
log = {
level = "Info";
service.DISABLE_REGISTRATION = pkgs.lib.mkForce true;
session.COOKIE_SECURE = pkgs.lib.mkForce true;
log.level = "Info";
};
rootUrl = "https://${domain}/";
};
+1
View File
@@ -9,6 +9,7 @@
package = pkgs.nextcloud25;
appstoreEnable = true;
hostName = "next.${config.networking.domain}";
#enableBrokenCiphersForSSE = false;
https = true;
config = {
adminpassFile = config.age.secrets.nextcloudadmin.path;
+2 -4
View File
@@ -53,10 +53,8 @@ root root postgres
postgresLog = {
enable = true;
files = "/var/lib/postgresql/*/log/*.log";
extraConfig = (lib.strings.concatStringsSep "\n" [
"compress"
"compresscmd=${pkgs.xz}/bin/xz"
]);
compress = true;
compresscmd = "${pkgs.xz}/bin/xz";
};
};
};