Files
lavitz/modules/home/ghostty.nix
T
2026-03-11 16:18:31 -06:00

17 lines
261 B
Nix

{ pkgs, ... }:
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty;
enableZshIntegration = true;
settings = {
theme = "Catppuccin Macchiato";
background-opacity = "0.95";
font-family = "IosevkaNFM";
};
};
}