Files
nixos/home/progs/ghostty.nix
2026-04-25 22:21:27 -04:00

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";
};
}