From 94301224744a16217d4e5648bbcced362dfabfc8 Mon Sep 17 00:00:00 2001 From: Victor Mignot Date: Thu, 11 Apr 2024 22:30:48 +0200 Subject: [PATCH] Add nextcloud apps --- configurations/camelot/nextcloud.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configurations/camelot/nextcloud.nix b/configurations/camelot/nextcloud.nix index 54c6adb..e0580fe 100644 --- a/configurations/camelot/nextcloud.nix +++ b/configurations/camelot/nextcloud.nix @@ -12,7 +12,9 @@ hostName = extraInfo.nextcloudURI; extraAppsEnable = true; - extraApps = { }; + extraApps = { + inherit (config.services.nextcloud.package.packages.apps) calendar cospend twofactor_webauthn deck; + }; database.createLocally = true; configureRedis = true; @@ -20,6 +22,8 @@ config = { dbtype = "pgsql"; + defaultPhoneRegion = "FR"; + adminuser = "dala"; adminpassFile = config.sops.secrets.nextcloud_admin_pw.path; };