flake/programs/ghostty.nix
2024-11-25 09:19:09 +01:00

17 lines
301 B
Nix

{
pkgs,
ghostty,
...
}: {
hm.home = {
packages = [ghostty.packages.${pkgs.system}.default];
file.".config/ghostty/config".text = ''
theme = rose-pine
font-family = Iosevka Nerd Font
font-size = 12
font-feature = -calt
font-feature = -dlig
'';
};
}