system/pkgs/app/terminal/ghostty.nix
2025-06-16 11:00:25 -07:00

23 lines
539 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;
app-notifications = "no-clipboard-copy";
shell-integration-features = "sudo";
};
installBatSyntax = true;
installVimSyntax = true;
enableZshIntegration = true;
enableBashIntegration = true;
};
}