mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 19:18:17 +01:00
26 lines
679 B
Nix
26 lines
679 B
Nix
{...}: {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
enableBashIntegration = false;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
font-family = "JetBrainsMono Nerd Font";
|
|
font-thicken = false;
|
|
font-feature = ["ss04" "ss01"];
|
|
bold-is-bright = false;
|
|
adjust-box-thickness = 1;
|
|
cursor-style = "bar";
|
|
cursor-style-blink = false;
|
|
copy-on-select = false;
|
|
confirm-close-surface = false;
|
|
adjust-cursor-thickness = 1;
|
|
mouse-hide-while-typing = true;
|
|
window-padding-x = 4;
|
|
window-padding-y = 6;
|
|
window-padding-balance = true;
|
|
title = "GhosTTY";
|
|
gtk-single-instance = true;
|
|
};
|
|
};
|
|
}
|