From 83c9393837de71e75e05711287f5f1b985e968fc Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:39:14 -0400 Subject: [PATCH] fix: wexterm renders blocks of color instead of text https://github.com/wez/wezterm/issues/5990 --- modules/common/applications/wezterm.nix | 3 +++ overlays/stu.nix | 17 ----------------- 2 files changed, 3 insertions(+), 17 deletions(-) delete mode 100644 overlays/stu.nix diff --git a/modules/common/applications/wezterm.nix b/modules/common/applications/wezterm.nix index 5056383..75d7c06 100644 --- a/modules/common/applications/wezterm.nix +++ b/modules/common/applications/wezterm.nix @@ -119,6 +119,9 @@ font = wezterm.font('${font}', { weight = 'Bold'}), font_size = ${if pkgs.stdenv.isLinux then "14.0" else "18.0"}, + -- Fix color blocks instead of text + front_end = "WebGpu", + -- Tab Bar hide_tab_bar_if_only_one_tab = true, window_frame = { diff --git a/overlays/stu.nix b/overlays/stu.nix deleted file mode 100644 index fe40716..0000000 --- a/overlays/stu.nix +++ /dev/null @@ -1,17 +0,0 @@ -inputs: _final: prev: { - - stu = prev.rustPlatform.buildRustPackage { - pname = "stu"; - version = "0.5.0"; - src = inputs.stu; - cargoHash = "sha256-gUolS7HXkTddxDWDGir4YC+2tJjgB/CCQC49SSRaR6U="; - buildInputs = - if prev.stdenv.isDarwin then - [ - prev.darwin.apple_sdk.frameworks.CoreGraphics - prev.darwin.apple_sdk.frameworks.AppKit - ] - else - [ ]; - }; -}