dot.nix/home/global/common/gnome/programs/ghostty.nix

18 lines
399 B
Nix

{
# Replaces the default terminal emulator; gnome-terminal/gnome-console is disabled
programs.ghostty = {
enable = true;
enableFishIntegration = true;
settings = {
theme = "stylix";
font-family = "monospace";
font-size = "11";
background-opacity = "0.85";
# async-backend = "epoll";
};
};
home.sessionVariables = {
TERM = "ghostty";
};
}