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,
...
}:
{
environment.systemPackages = [ pkgs.ghostty ];
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
'';
hm.programs.ghostty = {
enable = true;
settings = {
theme = "light:catppuccin-latte,dark:catppuccin-mocha";
font-family = "Iosevka Term";
font-size = 12;
font-feature = [
"-calt"
"-dlig"
];
};
};
}