Files
cnix/modules/system/studio/mysql-workbench/default.nix
2024-10-17 20:06:17 +02:00

19 lines
343 B
Nix

{
pkgs,
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.system.studio.mysql-workbench;
in {
options = {
system.studio.mysql-workbench.enable = mkEnableOption "Enables MySQL Workbench";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
mysql-workbench
];
};
}