feat(nix): add WezTerm configuration and package

- Added WezTerm package to the GUI services module for enhanced terminal capabilities.
- Configured a custom `wezterm.lua` file to enable Kitty keyboard support.
- Minor adjustment to `favorite-apps` in Home Manager for streamlined customization.
This commit is contained in:
Harald Hoyer 2026-02-10 14:09:32 +01:00
parent acb65f86bc
commit c7460503a3
2 changed files with 11 additions and 0 deletions

View file

@ -46,6 +46,7 @@
"clipboard-history@alexsaveau.dev"
];
# dconf watch /
favorite-apps = [
"org.gnome.Console.desktop"
"jetbrains-toolbox.desktop"
@ -70,4 +71,13 @@
xdg.enable = true;
xdg.mime.enable = true;
xdg.configFile."wezterm/wezterm.lua".text = ''
local wezterm = require("wezterm")
local config = wezterm.config_builder()
config.enable_kitty_keyboard = true
return config
'';
}