2025-05-01 21:16:15 +10:00
|
|
|
{pkgs, ...}: {
|
|
|
|
|
home = {
|
|
|
|
|
packages = [
|
|
|
|
|
pkgs.ghostty
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
sessionVariables.TERMINAL = "ghostty";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
programs.ghostty = {
|
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
|
theme = "Dracula";
|
|
|
|
|
font-family = "Geist Nerd Font";
|
|
|
|
|
font-feature = ["liga" "calt"];
|
|
|
|
|
|
|
|
|
|
window-padding-x = 12;
|
|
|
|
|
window-padding-y = 6;
|
|
|
|
|
window-theme = "system";
|
|
|
|
|
|
|
|
|
|
window-height = 26;
|
|
|
|
|
window-width = 90;
|
|
|
|
|
copy-on-select = true;
|
|
|
|
|
gtk-single-instance = false;
|
|
|
|
|
adw-toolbar-style = "flat";
|
|
|
|
|
|
2025-05-14 10:45:30 +10:00
|
|
|
# disable close confirmations
|
|
|
|
|
confirm-close-surface = false;
|
|
|
|
|
|
2025-05-01 21:16:15 +10:00
|
|
|
keybind = [
|
|
|
|
|
"ctrl+shift+plus=increase_font_size:1"
|
|
|
|
|
"ctrl+shift+minus=decrease_font_size:1"
|
|
|
|
|
|
|
|
|
|
"ctrl+h=goto_split:left"
|
|
|
|
|
"ctrl+l=goto_split:right"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#themes = {
|
|
|
|
|
#aylur-dark = colors (import ./colors.nix {scheme = "dark";});
|
|
|
|
|
#aylur-light = colors (import ./colors.nix {scheme = "light";});
|
|
|
|
|
#};
|
|
|
|
|
};
|
|
|
|
|
}
|