add dav lib git submodule

This commit is contained in:
Jonas Heinrich 2023-01-03 17:15:47 +01:00
parent 0ef57a7b8e
commit 5f44cbb266
4 changed files with 12 additions and 5 deletions

View file

@ -52,13 +52,17 @@
};
# Mount our local development repositories into the VM
nixos-shell.mounts.extraMounts = {
"/var/lib/nextcloud/server" = {
target = ./server;
cache = "none";
};
"/var/lib/nextcloud/store-apps/calendar" = {
target = ./calendar;
cache = "none";
};
"/var/lib/nextcloud/server" = {
target = ./server;
cache = "none";
"/var/lib/nextcloud/server/3rdparty/sabre/dav" = {
target = ./dav;
cache = "none";
};
};
services.nginx.virtualHosts."localhost".root = lib.mkForce "/var/lib/nextcloud/server";