nix-config/configs/home-manager/ghostty.nix
Gabe Venberg b7c13daba6 Cant have both terminal transparency and a working GUI at the same time.
--transparent-clipping is needed to avoid text stacking when terminals
are stacked, but it breaks a ton of GUI stuff.
2025-10-30 18:07:53 +01:00

24 lines
390 B
Nix

{
config,
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
fira-code
# monocraft
# miracode
nerd-fonts.symbols-only
];
programs.ghostty = {
enable = true;
settings = {
font-family = "Fira Code";
theme = "Gruvbox Dark";
font-size = 12;
window-decoration = "server";
window-inherit-working-directory = false;
};
};
}