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

View file

@ -3,11 +3,10 @@
pkgs,
config,
catppuccin,
ghostty,
...
}: {
imports = [
../programs/alacritty.nix
../programs/ghostty.nix
../programs/gnome.nix
../programs/vscode.nix
@ -66,7 +65,6 @@
# font-manager
chromium
gimp
ghostty.packages.${pkgs.system}.default
gnome.gnome-calculator
gparted
jetbrains.idea-ultimate

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
'';
};
}