16 lines
257 B
Nix
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";
|
|
};
|
|
};
|
|
}
|