Files
cnix/system/modules/studio/mysql-workbench/default.nix
2024-10-13 18:09:15 +02:00

19 lines
357 B
Nix

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