feat(ghostty): switch to nixpkgs version

This commit is contained in:
uku 2024-12-30 10:33:19 +01:00
parent 5702a4fad3
commit 2f6354b8a2
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
3 changed files with 9 additions and 103 deletions

View file

@ -1,18 +1,15 @@
{
pkgs,
ghostty,
...
}:
{
hm.home = {
packages = [ ghostty.packages.${pkgs.system}.default ];
environment.systemPackages = [ pkgs.ghostty ];
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
'';
};
hm.home.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
'';
}