diff --git a/hosts/pi4/nextcloud.nix b/hosts/pi4/nextcloud.nix index d930b95..337f918 100644 --- a/hosts/pi4/nextcloud.nix +++ b/hosts/pi4/nextcloud.nix @@ -1,3 +1,4 @@ +# https://mich-murphy.com/configure-nextcloud-nixos/ { pkgs, config, ... }: let adminPass = "nextcloud/admin-pass"; @@ -26,8 +27,9 @@ in extraApps = { inherit (config.services.nextcloud.package.packages.apps) contacts - tasks deck + notes + tasks ; }; extraAppsEnable = true; @@ -35,6 +37,7 @@ in hostName = domain; https = true; + maxUploadSize = "0"; package = pkgs.nextcloud31; settings = { @@ -43,6 +46,7 @@ in ]; }; }; + postgresql = { enable = true; ensureDatabases = [ dbname ];