Files
nixos-config/modules/home/ghostty.nix

15 lines
211 B
Nix
Raw Normal View History

{
...
}:
{
programs.ghostty = {
enable = true;
enableZshIntegration = true;
settings = {
theme = "Catppuccin Mocha";
2025-11-11 22:47:51 -05:00
term = "xterm-256color";
};
systemd.enable = true;
};
}