system/pkgs/app/terminal/ghostty.nix

21 lines
449 B
Nix
Raw Normal View History

2025-04-11 18:43:57 -04:00
{ pkgs, ... }:
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty;
settings = {
theme = "nord";
2025-04-16 13:59:06 -04:00
clipboard-read = "allow";
clipboard-write = "allow";
copy-on-select = "clipboard";
background-opacity = 0.65;
background-blur = 5;
2025-04-11 18:43:57 -04:00
font-size = 15;
};
installBatSyntax = true;
installVimSyntax = true;
enableZshIntegration = true;
enableBashIntegration = true;
};
}