Skip to content

Commit

Permalink
Fix wezterm for amd and nvidia
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoruto committed Dec 13, 2024
1 parent fc779e2 commit b223b95
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/home-manager/pc/terminal/wezterm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
config.enable_wayland = false
-- config.front_end = "WebGpu"
-- config.enable_wayland = true
config.front_end = "OpenGL"
config.front_end = "${
if ((args ? nixosConfig) && (osConfig.hosts.nvidia.enable)) then "OpenGL" else "WebGpu"
}"
config.hide_tab_bar_if_only_one_tab = true
-- config.window_decorations = 'TITLE | RESIZE'
config.window_decorations = 'RESIZE'
Expand Down

0 comments on commit b223b95

Please sign in to comment.