Compare commits

..

No commits in common. "925d253313cb275fc078e94ac635ca3f79a1eace" and "dc54831fdf22dae7e650c1445f5b2f411ff81f8e" have entirely different histories.

2 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,6 @@
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,4 +29,8 @@ 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