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

18 lines
301 B
Nix

{ ... }:
{
programs.ghostty = {
enable = true;
settings = {
font-family = "JetBrainsMono Nerd Font";
font-size = 11;
theme = "Catppuccin Mocha";
window-decoration = false;
# Disable ligatures
font-feature = [ "-liga" "-dlig" "-calt" ];
};
};
}