From 923e23468e4624b456c0dd63539f420c0adafa31 Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@private.storage> Date: Sat, 10 Sep 2022 19:24:55 +0000 Subject: [PATCH] =?UTF-8?q?Use=20short=20hand=20=F0=9F=A4=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nixos/modules/private-storage.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/private-storage.nix b/nixos/modules/private-storage.nix index b4efbf25..58d14217 100644 --- a/nixos/modules/private-storage.nix +++ b/nixos/modules/private-storage.nix @@ -17,7 +17,7 @@ let # # NOTE: This is promised by the service privacy policy. It *may not* be # raised without following the process for updating the privacy policy. - max-incident-age = toString(config.services.private-storage.monitoring.policy.logRetentionSeconds) + "s"; + max-incident-age = toString(cfg.monitoring.policy.logRetentionSeconds) + "s"; fqdn = "${ assert config.networking.hostName != null; config.networking.hostName -- GitLab