Files
nixos-config/profiles/ghostty.nix
2025-12-26 15:20:54 +01:00

19 lines
456 B
Nix

{pkgs, ...}: {
xdg.configFile."ghostty/config".text = ''
command = ${pkgs.fish}/bin/fish
theme = Catppuccin Latte
window-padding-x = 12
window-padding-y = 3
window-padding-balance = true
font-family = TX-02
font-size = 16.5
cursor-style = block
mouse-hide-while-typing = true
mouse-scroll-multiplier = 1.25
shell-integration = detect
shell-integration-features = no-cursor
clipboard-read = allow
clipboard-write = allow
'';
}