dotfiles/home/modules/ghostty/config/settings.nix

22 lines
373 B
Nix
Raw Normal View History

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