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-28 20:45:11 -06:00
|
|
|
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;
|
2025-01-28 20:45:11 -06:00
|
|
|
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";
|
|
|
|
}
|