dots/modules/shared/home/general/all-gui.nix
Gene Liverman 29756db2b0
Added & themed WezTerm, updated OMP theme's coffee cup glyph
Not using the Home Manager module to manage WezTerm due to using
Homebrew to install it on macOS.

Large parts of this came from Gemini but little bits here and there also
came from ChatGPT and Claude (aka whatever I could use at the moment).

Co-authored-by: Gemini <gemini@google.com>
Co-authored-by: ChatGPT <chatgpt@openai.com>
Co-authored-by: Claude <claude@anthropic.com>
2026-04-08 20:49:39 -04:00

14 lines
290 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
esptool
];
programs = {
git.settings.aliases = {
kraken = "!gitkraken -p $(cd \"\${1:-.}\" && git rev-parse --show-toplevel)";
};
};
xdg.configFile."wezterm/wezterm.lua".source = ../../files/wezterm/wezterm.lua;
}