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

23 lines
407 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)
fonts
2025-01-14 16:17:42 -06:00
;
2025-01-18 03:50:54 -06:00
in
{
2025-01-08 19:06:14 -06:00
confirm-close-surface = false;
window-decoration = false;
font-size = fonts.sizes.terminal.size0;
font-family = fonts.names.name0;
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";
}