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

24 lines
545 B
Nix
Raw Normal View History

2025-01-08 19:06:14 -06:00
{
flake,
2025-03-21 18:29:14 -05:00
osConfig,
2025-01-08 19:06:14 -06:00
pkgs,
...
2025-01-18 03:50:54 -06:00
}:
let
2025-03-21 18:29:14 -05:00
inherit (flake.config.aesthetics.themes) fonts;
inherit (flake.config.machines.devices) deimos;
hostname = osConfig.networking.hostName;
2025-01-18 03:50:54 -06:00
in
{
2025-01-08 19:06:14 -06:00
confirm-close-surface = false;
2025-03-21 18:29:14 -05:00
window-decoration = if hostname == deimos.name then true else 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";
}