nixos-config/modules/home/all/ghostty.nix
2025-01-02 10:44:10 -05:00

12 lines
224 B
Nix

{ pkgs, ... }:
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty;
settings = {
gtk-titlebar = false; # better on tiling wm
font-size = 10;
theme = "catppuccin-mocha";
};
};
}