longview nixos module: improve description for mysql password config options

This commit is contained in:
Rodney Lorrimar 2015-11-16 14:27:36 +00:00
parent 33c2b8a1f1
commit 33f869ba1e

View File

@ -70,14 +70,16 @@ in
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!
'';
};
};