18 lines
333 B
Nix
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
|
|
'';
|
|
};
|
|
}
|