From 5a3783628aa45be4f884c7b48750881d14a2b517 Mon Sep 17 00:00:00 2001 From: satr14 Date: Fri, 1 May 2026 17:08:40 +0700 Subject: [PATCH 1/2] cryptpad fix --- modules/system/homelab/docs.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/system/homelab/docs.nix b/modules/system/homelab/docs.nix index 58784a3..ebc729a 100644 --- a/modules/system/homelab/docs.nix +++ b/modules/system/homelab/docs.nix @@ -1,7 +1,9 @@ -{ homelab, ... }: let +{ lib, 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 = { From 2b04bb766891f5a0294886c4841561bf52e559b2 Mon Sep 17 00:00:00 2001 From: satr14 Date: Fri, 1 May 2026 17:13:25 +0700 Subject: [PATCH 2/2] hide duplicate mountpoints --- modules/system/homelab/dash.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/system/homelab/dash.nix b/modules/system/homelab/dash.nix index f419efb..4c25bf9 100644 --- a/modules/system/homelab/dash.nix +++ b/modules/system/homelab/dash.nix @@ -250,7 +250,12 @@ in { type = "server-stats"; servers = [{ type = "local"; - # mountpoints."/nix/store".hide = true; + mountpoints = { + "/nix/store".hide = true; + "/var/lib/cryptpad".hide = true; + "/var/lib/vaultwarden".hide = true; + "/var/lib/acme/proxy.satr14.my.id".hide = true; + }; }]; } {