flake/programs/ghostty.nix
2024-12-25 18:21:24 +01:00

18 lines
333 B
Nix

{
pkgs,
ghostty,
...
}:
{
hm.home = {
packages = [ ghostty.packages.${pkgs.system}.default ];
file.".config/ghostty/config".text = ''
theme = light:catppuccin-latte,dark:catppuccin-mocha
font-family = Iosevka Term
font-size = 12
font-feature = -calt
font-feature = -dlig
'';
};
}