Merge pull request #87812 from joachimschmidt557/mysql-enable-option

nixos/mysql: refactor enable option
This commit is contained in:
Michele Guerini Rocco 2020-05-28 10:02:25 +02:00 committed by GitHub
commit 429f976089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,13 +32,7 @@ in
services.mysql = {
enable = mkOption {
type = types.bool;
default = false;
description = "
Whether to enable the MySQL server.
";
};
enable = mkEnableOption "MySQL server";
package = mkOption {
type = types.package;