Upgrade linode

This commit is contained in:
Greg Hellings
2023-05-11 14:34:23 +00:00
parent c0417e9590
commit 262d044229
5 changed files with 27 additions and 4 deletions
+1
View File
@@ -8,6 +8,7 @@
./nextcloud.nix
./nginx.nix
./postgres.nix
./rei.nix
./synapse.nix
];
greg.home = false;
+4 -2
View File
@@ -34,7 +34,9 @@ in {
enable = true;
type = "tar.xz";
};
httpPort = 3001;
settings = {
server.HTTP_PORT = 3001;
};
log = {
level = "Info";
};
@@ -42,7 +44,7 @@ in {
};
greg.proxies."${srcDomain}" = {
target = "http://localhost:${toString config.services.gitea.httpPort}";
target = "http://localhost:${toString config.services.gitea.settings.server.HTTP_PORT}";
ssl = true;
genAliases = false;
};
+1 -1
View File
@@ -6,7 +6,7 @@
services.nextcloud = {
enable = true;
package = pkgs.nextcloud24;
package = pkgs.nextcloud25;
appstoreEnable = true;
hostName = "next.${config.networking.domain}";
https = true;
+15
View File
@@ -0,0 +1,15 @@
{ ... }:
{
services = {
odoo = {
enable = true;
domain = "doublel.thehellings.com";
settings.options = {
db_host = "localhost";
db_port = "5432";
db_user = "odoo";
dbfilter = "^doublel.*$";
};
};
};
}
+6 -1
View File
@@ -32,7 +32,12 @@
};
};
nixpkgs.config.allowUnfree = true;
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [
"qtwebkit-5.212.0-alpha4"
];
};
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [