nixos-config/home/ghostty.nix

20 lines
445 B
Nix
Raw Permalink Normal View History

2025-01-21 12:23:16 -05:00
{ ... }: {
programs.ghostty = {
enable = true;
enableZshIntegration = true;
clearDefaultKeybinds = true;
settings = {
theme = "iceberg-dark";
font-family = "IBM Plex Mono";
font-size = "12";
window-decoration = false;
confirm-close-surface = false;
keybind = [
"ctrl+q=quit"
"ctrl+shift+c=copy_to_clipboard"
2025-01-21 15:36:19 -05:00
"ctrl+shift+v=paste_from_clipboard"
2025-01-21 12:23:16 -05:00
];
};
};
}