18 lines
301 B
Nix
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" ];
|
|
};
|
|
};
|
|
}
|