nixos-config/home/ghostty.nix

12 lines
208 B
Nix
Raw Normal View History

2025-01-20 01:22:16 -05:00
{ ... }: {
programs.ghostty = {
enable = true;
enableZshIntegration = true;
2025-01-20 01:37:20 -05:00
settings = {
font-family = "IBM Plex Mono";
font-size = 8;
window-decoration = false;
};
2025-01-20 01:22:16 -05:00
};
}