longview nixos module: improve description for mysql password config options

Changed files
+4 -2
nixos
modules
services
monitoring
+4 -2
nixos/modules/services/monitoring/longview.nix
···
description = ''
The user for connecting to the MySQL database. If provided,
Longview will connect to MySQL and collect statistics about
-
queries, etc.
+
queries, etc. This user does not need to have been granted
+
any extra privileges.
'';
};
mysqlPassword = mkOption {
type = types.str;
description = ''
-
The password corresponding to mysqlUser.
+
The password corresponding to mysqlUser. Warning: this is
+
stored in cleartext in the Nix store!
'';
};
};