Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8b2dfcb795f9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 429f97608955
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 14, 2020

  1. Copy the full SHA
    cd1152f View commit details

Commits on May 28, 2020

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

    nixos/mysql: refactor enable option
    rnhmjoj authored May 28, 2020
    Copy the full SHA
    429f976 View commit details
Showing with 1 addition and 7 deletions.
  1. +1 −7 nixos/modules/services/databases/mysql.nix
8 changes: 1 addition & 7 deletions nixos/modules/services/databases/mysql.nix
Original file line number Diff line number Diff line change
@@ -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;