Compare commits

..

2 Commits

Author SHA1 Message Date
925d253313
refactor(nix): overlay wezterm with wezterm upstream
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m8s
2024-05-04 13:41:06 -05:00
5a1ca7d3b3
refactor(wezterm): remove hack for wayland, fixed upstream 2024-05-04 13:40:08 -05:00
2 changed files with 1 additions and 4 deletions

View File

@ -9,6 +9,7 @@
wrapProgram $out/bin/lxappearance --prefix GDK_BACKEND : x11
'';
});
wezterm = inputs.wezterm.packages.${final.system}.default;
opensnitch-ui = prev.opensnitch-ui.overrideAttrs (oldAttrs: {
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ prev.python311Packages.qt-material ];
});

View File

@ -29,8 +29,4 @@ local config = wlib.Table.merge(gpu, events, fonts, theme, tabbar, misc, renderi
log.debug("Final Wezterm Config: " .. require("lib.inspect").inspect(config, { newline = " ", indent = "" }))
-- HACK: temporarily disable Wayland support and instead fallback to XWayland. Wezterm doesn't properly
-- support Wayland right now 🫤
-- See: https://github.com/wez/wezterm/issues/5103
config.enable_wayland = false
return config