Files
lavitz/modules/home/ghostty.nix
T
2026-03-11 17:52:24 -06:00

17 lines
248 B
Nix

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