summary refs log tree commit diff
diff options
context:
space:
mode:
authorRodney Lorrimar <dev@rodney.id.au>2015-11-16 14:27:36 +0000
committerRodney Lorrimar <dev@rodney.id.au>2015-11-22 12:37:00 +0000
commit33f869ba1eec1aaecfab992adf2886d13231866a (patch)
tree0f8cd4a5f49cbc63b669fc931896138259bb87b2
parent33c2b8a1f11b4f6632a28ff920e7b79da31ddb12 (diff)
downloadnixpkgs-33f869ba1eec1aaecfab992adf2886d13231866a.tar
nixpkgs-33f869ba1eec1aaecfab992adf2886d13231866a.tar.gz
nixpkgs-33f869ba1eec1aaecfab992adf2886d13231866a.tar.bz2
nixpkgs-33f869ba1eec1aaecfab992adf2886d13231866a.tar.lz
nixpkgs-33f869ba1eec1aaecfab992adf2886d13231866a.tar.xz
nixpkgs-33f869ba1eec1aaecfab992adf2886d13231866a.tar.zst
nixpkgs-33f869ba1eec1aaecfab992adf2886d13231866a.zip
longview nixos module: improve description for mysql password config options
-rw-r--r--nixos/modules/services/monitoring/longview.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/nixos/modules/services/monitoring/longview.nix b/nixos/modules/services/monitoring/longview.nix
index 955b33a5c0c..770d56e60ef 100644
--- a/nixos/modules/services/monitoring/longview.nix
+++ b/nixos/modules/services/monitoring/longview.nix
@@ -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!
         '';
       };
     };