nixos/modules/home-manager/ghostty.nix
2025-01-02 09:17:09 -05:00

16 lines
257 B
Nix

{
pkgs,
config,
...
}: {
programs.ghostty = {
enable = true;
enableZshIntegration = true;
installVimSyntax = true;
settings = {
font-family = "JetBrainsMono Nerd Font Mono";
macos-titlebar-style = "hidden";
};
};
}