30 lines
614 B
Nix
30 lines
614 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
package = pkgs.ghostty-bin;
|
|
settings = {
|
|
command = "${pkgs.fish}/bin/fish";
|
|
theme = "catppuccin-latte";
|
|
window-padding-x = 8;
|
|
window-padding-y = 2;
|
|
window-padding-balance = true;
|
|
font-family = "Iosevka Nerd Font";
|
|
font-size = 15.5;
|
|
font-feature = [
|
|
"-calt"
|
|
"-dlig"
|
|
];
|
|
cursor-style = "block";
|
|
mouse-hide-while-typing = true;
|
|
mouse-scroll-multiplier = 1.25;
|
|
shell-integration = "detect";
|
|
shell-integration-features = "no-cursor";
|
|
};
|
|
};
|
|
}
|