add testing app

This commit is contained in:
Jonas Heinrich 2023-10-18 18:56:03 +02:00
parent d051537529
commit dff137dff0
7 changed files with 16 additions and 8 deletions

3
.gitmodules vendored
View file

@ -14,3 +14,6 @@
[submodule "circles"] [submodule "circles"]
path = circles path = circles
url = https://github.com/nextcloud/circles.git url = https://github.com/nextcloud/circles.git
[submodule "files_fulltextsearch"]
path = files_fulltextsearch
url = https://github.com/nextcloud/files_fulltextsearch.git

@ -1 +1 @@
Subproject commit 8394e9828f06f5f5c2044b3cd5c1aacda7ddb699 Subproject commit c5c3d62e988cd33c1f9119f07b551961bfeff3f6

@ -1 +1 @@
Subproject commit ce6de436885daaa510959a6d15d90445e65fc016 Subproject commit c71c5c4fcbc2873281a3fbd7ba2ffc9f4f10f470

2
dav

@ -1 +1 @@
Subproject commit 406f688f040ec5aef04a78b6e525805682bd81f3 Subproject commit a74464d583af69d72106ad48820b52bb44144e43

2
server

@ -1 +1 @@
Subproject commit ab27e9508b7c399e7bae77d538f873395fe1334a Subproject commit 5de36b6941f395932ad2889afadb6952b8fd9c20

View file

@ -43,8 +43,12 @@
package = pkgs.nextcloud27; package = pkgs.nextcloud27;
hostName = "localhost"; hostName = "localhost";
extraApps = with config.services.nextcloud.package.packages.apps; { extraApps = with config.services.nextcloud.package.packages.apps; {
inherit contacts; inherit contacts polls;
#inherit calendarM # hmr_enable = pkgs.fetchNextcloudApp rec {
# url = "https://github.com/nextcloud/hmr_enabler/archive/852acc47c64db1be85051197bf7939298059fe09.zip";
# sha256 = "sha256-eTc51pkg3OdHJB7X4/hD39Ce+9vKzw1nlJ7BhPOzlll=";
# };
}; };
extraAppsEnable = true; extraAppsEnable = true;
config = { config = {
@ -79,7 +83,8 @@
mail_smtpmode = "sendmail"; mail_smtpmode = "sendmail";
mail_sendmailmode = "pipe"; mail_sendmailmode = "pipe";
trusted_domains = [ "10.100.100.1" ]; trusted_domains = [ "10.100.100.1" ];
integrity.check.disabled = true; "integrity.check.disabled" = true;
debug = true;
apps_paths = [ apps_paths = [
{ {
path = "/var/lib/nextcloud/nix-apps"; path = "/var/lib/nextcloud/nix-apps";

@ -1 +1 @@
Subproject commit ac56915f9b88a99118c0ee7f25d4338798514251 Subproject commit e43d668349bc74047d1382188f108b06745ac5f6