nixos/modules/_home/wezterm.nix
2026-03-27 19:52:19 -03:00

13 lines
231 B
Nix

{ pkgs, ... }: {
programs.wezterm = {
enable = true;
package = pkgs.wezterm;
extraConfig = ''
local config = wezterm.config_builder()
config.enable_tab_bar = false
return config
'';
};
}