From d18df59c669bc9df839332ce2c43d7fb7d02defa Mon Sep 17 00:00:00 2001 From: ahtlon Date: Sat, 11 Oct 2025 21:38:09 +0200 Subject: [PATCH] [nextcloud] change the deck app to allow dragging on text --- machines/nextcloud/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/machines/nextcloud/configuration.nix b/machines/nextcloud/configuration.nix index 98b9688..3d4d4a0 100644 --- a/machines/nextcloud/configuration.nix +++ b/machines/nextcloud/configuration.nix @@ -47,12 +47,17 @@ with lib; }; extraAppsEnable = true; extraApps = { - inherit (config.services.nextcloud.package.packages.apps) contacts calendar deck polls registration collectives forms; + inherit (config.services.nextcloud.package.packages.apps) contacts calendar polls registration collectives forms; appointments = pkgs.fetchNextcloudApp { sha256 = "sha256-ls1rLnsX7U9wo2WkEtzhrvliTcWUl6LWXolE/9etJ78="; url = "https://github.com/SergeyMosin/Appointments/raw/refs/tags/v2.4.3/build/artifacts/appstore/appointments.tar.gz"; license = "agpl3Plus"; }; + deck = pkgs.fetchNextcloudApp { + sha256 = "sha256-1sqDmJpM9SffMY2aaxwzqntdjdcUaRySyaUDv9VHuiE="; + url = "https://link.storjshare.io/raw/jw7pf6gct34j3pcqvlq6ddasvdwq/mal/deck.tar.gz"; + license = "agpl3Plus"; + }; }; settings = { trusted_domains = ["10.0.0.13"];