Files
dotfiles/homes/julian/features/ghostty/default.nix
2025-07-04 14:44:31 +02:00

17 lines
280 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";
}