diff --git a/modules/system/homelab/docs.nix b/modules/system/homelab/docs.nix index ebc729a..077f95b 100644 --- a/modules/system/homelab/docs.nix +++ b/modules/system/homelab/docs.nix @@ -1,9 +1,7 @@ -{ lib, homelab, ... }: let +{ homelab, ... }: let domain = "docs.${homelab.domain}"; sandbox = "docs-sandbox.${homelab.domain}"; in { - systemd.services.cryptpad.confinement.enable = lib.mkForce false; - services.cryptpad = { enable = true; settings = { @@ -17,7 +15,7 @@ in { }; }; - fileSystems."/var/lib/cryptpad" = { + fileSystems."/var/lib/private/cryptpad" = { device = "/mnt/data/apps/cryptpad"; depends = [ "/mnt/data" ]; options = [ "bind" "nofail" ];