chore(programs/ghostty): switch to home manager module

This commit is contained in:
uku 2025-02-23 17:57:41 +01:00
parent 73e6d519aa
commit 54ea99d44c
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o

View file

@ -1,15 +1,14 @@
{ {
pkgs, hm.programs.ghostty = {
... enable = true;
}: settings = {
{ theme = "light:catppuccin-latte,dark:catppuccin-mocha";
environment.systemPackages = [ pkgs.ghostty ]; font-family = "Iosevka Term";
font-size = 12;
hm.home.file.".config/ghostty/config".text = '' font-feature = [
theme = light:catppuccin-latte,dark:catppuccin-mocha "-calt"
font-family = Iosevka Term "-dlig"
font-size = 12 ];
font-feature = -calt };
font-feature = -dlig };
'';
} }