flake/home/wezterm.nix
2025-06-23 00:26:02 +03:00

22 lines
421 B
Nix

{
lib,
config,
pkgs,
...
}: {
options.enableWezterm = lib.mkEnableOption "Wezterm terminal emulator";
config = {
programs.wezterm = {
enable = config.enableWezterm;
extraConfig = ''
_G.shells = {
fish = '${lib.getExe pkgs.fish}'
};
return {
default_prog = { _G.shells.fish },
window_decorations = "NONE",
}
'';
};
};
}