lol

longview nixos module: improve description for mysql password config options

+4 -2
+4 -2
nixos/modules/services/monitoring/longview.nix
··· 70 70 description = '' 71 71 The user for connecting to the MySQL database. If provided, 72 72 Longview will connect to MySQL and collect statistics about 73 - queries, etc. 73 + queries, etc. This user does not need to have been granted 74 + any extra privileges. 74 75 ''; 75 76 }; 76 77 77 78 mysqlPassword = mkOption { 78 79 type = types.str; 79 80 description = '' 80 - The password corresponding to mysqlUser. 81 + The password corresponding to mysqlUser. Warning: this is 82 + stored in cleartext in the Nix store! 81 83 ''; 82 84 }; 83 85 };