nixos-config/modules/home/gui/ghostty.nix
Sridhar Ratnakumar 2d7423e07a phase 1
2025-11-21 13:40:35 -05:00

18 lines
577 B
Nix

{ pkgs, ... }:
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty;
settings = {
gtk-titlebar = false; # better on tiling wm
font-size = 10;
theme = "catppuccin-mocha";
# Default window split keybindings (no custom config needed):
# Cmd+D (macOS) / Ctrl+Shift+D (Linux) - Split right
# Cmd+Shift+D (macOS) / Ctrl+Shift+Shift+D (Linux) - Split down
# Cmd+W (macOS) / Ctrl+Shift+W (Linux) - Close current split
# Cmd+[ / Cmd+] (macOS) / Ctrl+Shift+[ / Ctrl+Shift+] (Linux) - Navigate splits
};
};
}