diff options
author | Sandro | 2022-05-16 01:49:08 +0200 |
---|---|---|
committer | GitHub | 2022-05-16 01:49:08 +0200 |
commit | 6c0dc6d621280a2a50ac3544e6f71102f0065ae0 (patch) | |
tree | 2158b645fb292c7e6058003f32c11422a6c6110c /nixos | |
parent | 53232aec11ad5c69636fb8bf148fa4eb365574f2 (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.nix | 2 |
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. |