33 lines
622 B
Nix
33 lines
622 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# https://mynixos.com/home-manager/option/programs.ghostty
|
|
programs.ghostty = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
settings = {
|
|
theme = "Adventure";
|
|
|
|
# font
|
|
font-family = "JetBrainsMono Nerd Font";
|
|
font-size = 12;
|
|
|
|
# window
|
|
window-decoration = false;
|
|
window-padding-x = 10;
|
|
window-padding-y = 10;
|
|
window-width = 80;
|
|
window-height = 40;
|
|
|
|
# semi-transparent
|
|
background-opacity = 0.90;
|
|
|
|
# cursor
|
|
cursor-style = "underline";
|
|
};
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
TERMINAL = "ghostty";
|
|
};
|
|
}
|