From a80e96def156e295d74c4f79278b4ac3688ae28a Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Sun, 16 Jun 2024 21:14:55 +0200 Subject: [PATCH] hosts (cyberoffice): add NextCloud apps --- systems/x86_64-linux/cyberoffice/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/systems/x86_64-linux/cyberoffice/configuration.nix b/systems/x86_64-linux/cyberoffice/configuration.nix index a1a8868..5721463 100644 --- a/systems/x86_64-linux/cyberoffice/configuration.nix +++ b/systems/x86_64-linux/cyberoffice/configuration.nix @@ -65,6 +65,15 @@ adminpassFile = config.sops.secrets.nextcloud-admin-pass.path; }; settings.trusted_domains = ["192.168.178.200"]; + extraApps = { + inherit (config.services.nextcloud.package.packages.apps) bookmarks calendar contacts cookbook deck memories; + news = pkgs.fetchNextcloudApp { + sha256 = "sha256-cfJkKRNSz15L4E3w1tnEb+t4MrVwVzb8lb6vCOA4cK4="; + url = "https://github.com/nextcloud/news/releases/download/24.0.0/news.tar.gz"; + license = "agpl3Plus"; + }; + }; + extraAppsEnable = true; }; # TODO extract this into a server module