marleyos/modules/darwin/programs/wezterm.nix
2025-05-31 17:57:56 -07:00

13 lines
229 B
Nix

{
config,
lib,
...
}: let
cfg = config.marleyos.programs.wezterm;
in {
options.marleyos.programs.wezterm.enable = lib.mkEnableOption "wezterm";
config = lib.mkIf cfg.enable {
homebrew.casks = ["wezterm"];
};
}