system/pkgs/app/terminal/ghostty.nix
2025-04-16 10:59:06 -07:00

21 lines
449 B
Nix

{ pkgs, ... }:
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty;
settings = {
theme = "nord";
clipboard-read = "allow";
clipboard-write = "allow";
copy-on-select = "clipboard";
background-opacity = 0.65;
background-blur = 5;
font-size = 15;
};
installBatSyntax = true;
installVimSyntax = true;
enableZshIntegration = true;
enableBashIntegration = true;
};
}