17 lines
331 B
Nix
17 lines
331 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
|
|
'';
|
|
};
|
|
}
|