• 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
17 lines
366 B
Nix
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";
|
|
};
|
|
}
|