feat(desktop): add ghostty config in hm

This commit is contained in:
uku 2024-06-09 19:26:07 +02:00
parent 5fdb95c65c
commit 7e204a26a7
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 19 additions and 3 deletions

18
programs/ghostty.nix Normal file
View file

@ -0,0 +1,18 @@
{
pkgs,
ghostty,
...
}: {
hm.home = {
packages = [ghostty.packages.${pkgs.system}.default];
file.".config/ghostty/config".text = ''
theme = rose-pine
font-family = Iosevka Nerd Font
font-size = 12
selection-foreground = #908caa
selection-background = #26233a
'';
};
}