Install nextcloud side-menu

This commit is contained in:
SebastianStork 2024-09-05 22:15:01 +02:00
parent dd94a75d30
commit 236d1cc5b8
3 changed files with 31 additions and 1 deletions

View file

@ -45,6 +45,7 @@
log_type = "file";
default_phone_region = "DE";
maintenance_window_start = "2"; # UTC
defaultapp = "side_menu";
};
configureRedis = true;
@ -56,7 +57,12 @@
startAt = "04:00:00";
};
extraApps = {
inherit (config.services.nextcloud.package.packages.apps) calendar contacts onlyoffice;
inherit (config.services.nextcloud.package.packages.apps)
calendar
contacts
onlyoffice
memories
;
twofactor_totp = pkgs.fetchNextcloudApp {
url = inputs.nextcloud-twofactor-totp.outPath;
@ -70,6 +76,12 @@
license = "agpl3Plus";
unpack = true;
};
side_menu = pkgs.fetchNextcloudApp {
url = inputs.nextcloud-side-menu.outPath;
sha256 = inputs.nextcloud-side-menu.narHash;
license = "agpl3Plus";
unpack = true;
};
};
};