From 4924eebbc2c402718a26e349176b3704749979d2 Mon Sep 17 00:00:00 2001 From: satr14 Date: Fri, 1 May 2026 08:13:10 +0700 Subject: [PATCH] bind mount for cert storage --- modules/system/homelab/proxy.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/system/homelab/proxy.nix b/modules/system/homelab/proxy.nix index 7f46967..446197e 100644 --- a/modules/system/homelab/proxy.nix +++ b/modules/system/homelab/proxy.nix @@ -27,6 +27,12 @@ in { }; }; + fileSystems."/var/lib/acme/${homelab.proxy.base}" = { + device = "/mnt/data/apps/acme/${homelab.proxy.base}"; + depends = [ "/mnt/data" ]; + options = [ "bind" "nofail" ]; + }; + services = { nginx = { enable = true;