feat: configure wezterm

This commit is contained in:
Zoty 2026-03-27 19:52:19 -03:00
parent 1df1f4ed07
commit 2138743d3e
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
3 changed files with 15 additions and 1 deletions

View file

@ -1,7 +1,7 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
firefox
wezterm
discord
];
programs.git = {

13
modules/_home/wezterm.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }: {
programs.wezterm = {
enable = true;
package = pkgs.wezterm;
extraConfig = ''
local config = wezterm.config_builder()
config.enable_tab_bar = false
return config
'';
};
}