Files
dotfiles/homes/julian/features/ghostty/default.nix
T
2026-06-03 16:17:46 +02:00

17 lines
282 B
Nix

{
lib,
config,
...
}: {
programs.ghostty = {
enable = true;
enableFishIntegration = true;
settings = {
# theme = "catppuccin-mocha";
font-size = 12;
};
};
home.sessionVariables.TERMINAL = lib.mkIf (config.terminal == "ghostty") "ghostty";
}