system/pkgs/app/terminal/ghostty.nix
2025-04-11 15:43:57 -07:00

16 lines
288 B
Nix

{ pkgs, ... }:
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty;
settings = {
theme = "nord";
font-size = 15;
};
installBatSyntax = true;
installVimSyntax = true;
enableZshIntegration = true;
enableBashIntegration = true;
};
}