From e6f369a823e3b3c96fa198522806f2b48ee58ffa Mon Sep 17 00:00:00 2001 From: nhnn Date: Fri, 15 Aug 2025 15:38:33 +0300 Subject: [PATCH] fix: don't check logrotate config due to bug with hardened profile --- configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.nix b/configuration.nix index 1d6f4f5..115e237 100644 --- a/configuration.nix +++ b/configuration.nix @@ -86,6 +86,8 @@ in }; }; + services.logrotate.checkConfig = false; # seems to be broken with hardened profile. + services.do-agent.enable = if config.selfprivacy.server.provider == "DIGITALOCEAN" then true else false;