Files
lavitz/modules/home/ghostty.nix
2026-01-22 15:43:18 -07:00

16 lines
228 B
Nix

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