revert not working fix

This commit is contained in:
Satria 2026-05-01 07:58:04 +07:00
commit 14a65b8c7e

View file

@ -3,10 +3,6 @@
sandbox = "docs-sandbox.${homelab.domain}"; sandbox = "docs-sandbox.${homelab.domain}";
data-dir = "/mnt/data/apps/cryptpad"; data-dir = "/mnt/data/apps/cryptpad";
in { in {
systemd.tmpfiles.rules = [
"d ${data-dir} 0750 cryptpad cryptpad -"
];
services.cryptpad = { services.cryptpad = {
enable = true; enable = true;
settings = { settings = {
@ -26,6 +22,4 @@ in {
logPath = "${data-dir}/logs"; logPath = "${data-dir}/logs";
}; };
}; };
systemd.services.cryptpad.serviceConfig.ReadWritePaths = [ data-dir ];
} }