dotfiles/home/modules/gui/apps/terminal/ghostty/config/settings.nix

23 lines
390 B
Nix
Raw Normal View History

2025-01-08 19:06:14 -06:00
{
flake,
pkgs,
...
2025-01-18 03:50:54 -06:00
}:
let
inherit (flake.config.aesthetics.themes)
2025-01-14 16:17:42 -06:00
font
;
2025-01-18 03:50:54 -06:00
in
{
2025-01-08 19:06:14 -06:00
confirm-close-surface = false;
window-decoration = false;
2025-01-18 17:05:54 -06:00
font-size = font.size.terminal;
2025-01-18 03:50:54 -06:00
font-family = font.name;
2025-01-08 19:06:14 -06:00
window-padding-x = 10;
window-padding-y = 10;
copy-on-select = true;
bold-is-bright = true;
shell-integration = "detect";
command = "${pkgs.nushell}/bin/nu";
}