chore: minor fixes
This commit is contained in:
parent
3f841cb9ba
commit
8cd75009d9
3 changed files with 11 additions and 7 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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; [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue