From 83e174cc6b1744282680ef842b36ad54037b2a62 Mon Sep 17 00:00:00 2001 From: satr14 Date: Fri, 1 May 2026 17:22:52 +0700 Subject: [PATCH] fix 2: point to private --- modules/system/homelab/docs.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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" ];