diff --git a/hosts/architect/nextcloud.nix b/hosts/architect/nextcloud.nix index 5ad507f..3d8ea53 100644 --- a/hosts/architect/nextcloud.nix +++ b/hosts/architect/nextcloud.nix @@ -8,6 +8,12 @@ let inherit (utilities) architectInterfaceAddress; in { + environment.systemPackages = with pkgs; [ + nodejs-18_x + libtensorflow + ffmpeg + ]; + services = { nginx.virtualHosts.${domain} = { forceSSL = true; @@ -16,7 +22,7 @@ in mysql = { enable = true; - package = pkgs.mariadb; + package = pkgs.mariadb_1011; }; redis = { @@ -42,7 +48,7 @@ in autoUpdateApps.startAt = "05:00:00"; maxUploadSize = "50G"; - + config = { overwriteProtocol = "https"; dbtype = "mysql"; @@ -51,7 +57,6 @@ in dbname = "nextcloud"; dbpassFile = "/secrets/nextcloud/dbpass.txt"; adminpassFile = "/secrets/nextcloud/dbpass.txt"; - extraTrustedDomains = [ "${domain}" ]; }; }; };