chore: minor fixes

This commit is contained in:
Zoty 2026-03-28 14:19:35 -03:00
parent 3f841cb9ba
commit 8cd75009d9
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
3 changed files with 11 additions and 7 deletions

View file

@ -10,12 +10,6 @@
XDG_TERMINAL_EMULATOR = "wezterm"; XDG_TERMINAL_EMULATOR = "wezterm";
}; };
programs.git = {
enable = true;
userName = "Zoty";
userEmail = "zotydev@gmail.com";
};
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;

View file

@ -5,9 +5,19 @@
extraConfig = '' extraConfig = ''
local config = wezterm.config_builder() local config = wezterm.config_builder()
config.front_end = "OpenGL"
config.enable_tab_bar = false config.enable_tab_bar = false
config.max_fps = 60
config.animation_fps = 60
config.enable_wayland = true
return config return config
''; '';
}; };
# I'm not sure why, but this removes the annoying input
# delay from wezterm.
home.sessionVariables = {
__GL_SYNC_TO_VBLANK = "0";
};
} }

View file

@ -17,7 +17,7 @@
services.xserver = { services.xserver = {
enable = false; enable = false;
layout = "en"; xkb.layout = "en";
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [