nixos-config/home-manager/modules/ghostty.nix
gwg313 5f9fb27ebb
updates
Signed-off-by: gwg313 <gwg313@pm.me>
2025-08-16 01:32:32 -04:00

26 lines
511 B
Nix

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