mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-24 09:48:30 +02:00
feat: add ghostty
This commit is contained in:
30
home/base/gui/terminal/ghostty.nix
Normal file
30
home/base/gui/terminal/ghostty.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
pkgs,
|
||||
ghostty,
|
||||
...
|
||||
}:
|
||||
###########################################################
|
||||
#
|
||||
# Ghostty Configuration
|
||||
#
|
||||
###########################################################
|
||||
{
|
||||
programs.ghostty = {
|
||||
enable = true;
|
||||
package = pkgs.ghostty; # the stable version
|
||||
# package = ghostty.packages.${pkgs.system}.default; # the latest version
|
||||
enableBashIntegration = true;
|
||||
# installVimSyntax = true;
|
||||
settings = {
|
||||
theme = "catppuccin-mocha";
|
||||
|
||||
font-family = "JetBrains Mono";
|
||||
font-size = 13;
|
||||
|
||||
background-opacity = 0.93;
|
||||
# only supported on macOS;
|
||||
background-blur-radius = 10;
|
||||
scrollback-limit = 20000;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user