From 1ebee6d886cf423a1c2ee88ee34a66e32c1a9c07 Mon Sep 17 00:00:00 2001 From: ahtlon Date: Tue, 26 Nov 2024 21:36:53 +0100 Subject: [PATCH] add nextcloud collectives --- machines/nextcloud/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/machines/nextcloud/configuration.nix b/machines/nextcloud/configuration.nix index 0804760..f33340f 100644 --- a/machines/nextcloud/configuration.nix +++ b/machines/nextcloud/configuration.nix @@ -28,6 +28,15 @@ with lib; hostName = "10.0.0.11"; #config.adminpassFile = config.sops.secrets.nextcloudAdminPass.path; config.adminpassFile = "/etc/nextcloud-admin-pass"; #user=root + extraAppsEnable = true; + extraApps = { + inherit (config.services.nextcloud.package.packages.apps) contacts calendar; + collectives = pkgs.fetchNextcloudApp { + sha256 = "sha256-ErCWmQCI+ym9Pvsf84Z9yq4CyYJ1uVhyhhlS2bVSJ54="; + url = "https://github.com/nextcloud/collectives/releases/download/v2.15.1/collectives-2.15.1.tar.gz"; + license = "agpl3Plus"; + }; + }; }; networking.firewall.allowedTCPPorts = [ 80 443 ];