dot.nix/home/global/common/gnome/programs/ghostty.nix
Chris Toph 270ebded3d Refactor config paths & update host imports
• Relocates common configurations from a user-specific directory to a global hierarchy
• Adds host-specific files and updates import paths for better modularity
• Introduces an experimental GNOME mutter feature
2025-05-27 14:44:19 -04:00

17 lines
366 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";
};
};
home.sessionVariables = {
TERM = "ghostty";
};
}