about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSandro2022-05-16 01:49:08 +0200
committerGitHub2022-05-16 01:49:08 +0200
commit6c0dc6d621280a2a50ac3544e6f71102f0065ae0 (patch)
tree2158b645fb292c7e6058003f32c11422a6c6110c /nixos
parent53232aec11ad5c69636fb8bf148fa4eb365574f2 (diff)
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.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/ddclient.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix
index d025c8f8177a..faee99b175eb 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.