Add wezterm

This commit is contained in:
Sage 2026-03-06 17:49:33 +00:00
parent 9568bf4a6e
commit 6b01ee918a
5 changed files with 393 additions and 1 deletions

View file

@ -23,9 +23,12 @@ in {
enable = true;
nix-direnv.enable = true;
enableZshIntegration = lib.mkIf config.mods.terminal.zsh.enable true;
enableNushellIntegration = lib.mkIf config.mods.terminal.nushell.enable true;
};
home.sessionVariables.EDITOR = "nvim";
programs.zsh.sessionVariables.EDITOR = "nvim";
programs.zsh.sessionVariables = lib.mkIf config.mods.terminal.zsh.enable {
EDITOR = "nvim";
};
};
}