add gtk config

This commit is contained in:
Osman Faruk Bayram 2025-04-25 03:47:38 +03:00
parent 6feb65635d
commit 5d680a90c8
2 changed files with 18 additions and 0 deletions

17
home/gtk.nix Normal file
View file

@ -0,0 +1,17 @@
{pkgs, ...}: {
gtk = {
enable = true;
theme = {
name = "Dracula";
package = pkgs.dracula-theme;
};
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = 1;
gtk-cursor-theme-size=8;
};
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
gtk-cursor-theme-size=8;
};
};
}

View file

@ -7,6 +7,7 @@
./alacritty.nix
./tmux
./git.nix
./gtk.nix
./ssh.nix
./bash.nix
./direnv.nix