nixos-config/home-manager/modules/ghostty.nix
2025-01-15 21:20:58 -05:00

23 lines
373 B
Nix

{
pkgs,
lib,
...
}:
{
programs.ghostty = {
enable = true;
enableZshIntegration = true;
settings = {
auto-update = "off";
background-opacity = 0.8;
confirm-close-surface = false;
font-family = "Comic Code Ligatures";
font-size = 14;
# theme = "Teerb";
};
};
home.packages = with pkgs; [
ueberzugpp
];
}