From 6c0dc6d621280a2a50ac3544e6f71102f0065ae0 Mon Sep 17 00:00:00 2001 From: Sandro Date: Mon, 16 May 2022 01:49:08 +0200 Subject: [PATCH] nixos/ddclient: turn verbose off by default verbose is a debugging setting one step noisier than debug and should only be turned on when debugging because it leaks quite some credentials and tokens in the journalctl. --- nixos/modules/services/networking/ddclient.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix index d025c8f8177..faee99b175e 100644 --- a/nixos/modules/services/networking/ddclient.nix +++ b/nixos/modules/services/networking/ddclient.nix @@ -181,7 +181,7 @@ with lib; }; verbose = mkOption { - default = true; + default = false; type = bool; description = '' Print verbose information.