nixos/modules/home-manager/ghostty.nix
2025-01-16 13:22:22 -05:00

18 lines
331 B
Nix

{
pkgs,
config,
inputs,
...
}: {
programs.ghostty = {
enable = false;
#package = inputs.ghostty.packages.${pkgs.system}.default;
enableZshIntegration = true;
installVimSyntax = true;
settings = {
font-family = "JetBrainsMono Nerd Font Mono";
macos-titlebar-style = "hidden";
};
};
}