mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
Fix stupid nextcloud ResourceProvider exception
This commit is contained in:
parent
4ad1faa82e
commit
5ce0d85d6e
2 changed files with 3 additions and 0 deletions
|
|
@ -47,11 +47,13 @@ in
|
||||||
hostBridge = "br0";
|
hostBridge = "br0";
|
||||||
|
|
||||||
bindMounts = {
|
bindMounts = {
|
||||||
|
# Secrets
|
||||||
"/run/secrets/container/tailscale-auth-key" = { };
|
"/run/secrets/container/tailscale-auth-key" = { };
|
||||||
"/run/secrets/container/${name}".isReadOnly = false;
|
"/run/secrets/container/${name}".isReadOnly = false;
|
||||||
"/run/secrets/restic".isReadOnly = false;
|
"/run/secrets/restic".isReadOnly = false;
|
||||||
"/run/secrets/healthchecks-ping-key".isReadOnly = false;
|
"/run/secrets/healthchecks-ping-key".isReadOnly = false;
|
||||||
|
|
||||||
|
# State
|
||||||
${dataDirOf name}.isReadOnly = false;
|
${dataDirOf name}.isReadOnly = false;
|
||||||
"/var/lib/tailscale" = {
|
"/var/lib/tailscale" = {
|
||||||
hostPath = "/var/lib/tailscale-${name}";
|
hostPath = "/var/lib/tailscale-${name}";
|
||||||
|
|
|
||||||
|
|
@ -71,6 +71,7 @@ in
|
||||||
inherit (config.services.nextcloud.package.packages.apps)
|
inherit (config.services.nextcloud.package.packages.apps)
|
||||||
calendar
|
calendar
|
||||||
contacts
|
contacts
|
||||||
|
deck
|
||||||
onlyoffice
|
onlyoffice
|
||||||
memories
|
memories
|
||||||
;
|
;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue