Upgrade linode
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
./nextcloud.nix
|
||||
./nginx.nix
|
||||
./postgres.nix
|
||||
./rei.nix
|
||||
./synapse.nix
|
||||
];
|
||||
greg.home = false;
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
services.nextcloud = {
|
||||
enable = true;
|
||||
package = pkgs.nextcloud24;
|
||||
package = pkgs.nextcloud25;
|
||||
appstoreEnable = true;
|
||||
hostName = "next.${config.networking.domain}";
|
||||
https = true;
|
||||
|
||||
@@ -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.*$";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -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; [
|
||||
|
||||
Reference in New Issue
Block a user