dotfiles/home/modules/ghostty/config/settings.nix
2025-01-18 17:05:54 -06:00

22 lines
390 B
Nix
Executable file

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