marleyos/modules/darwin/programs/wezterm/default.nix

18 lines
261 B
Nix
Raw Normal View History

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