nix/modules/wm/home/gtk/default.nix

19 lines
372 B
Nix
Raw Normal View History

2024-11-23 15:30:03 +01:00
{
pkgs,
config,
...
}: let
2024-08-31 16:04:57 +02:00
gruvboxPlus = import ./gruvbox-plus.nix {inherit pkgs;};
in {
2024-11-08 18:23:40 +01:00
home.file = {
2024-08-31 16:04:57 +02:00
".local/share/icons/GruvboxPlus".source = "${gruvboxPlus}";
};
2024-11-08 18:23:40 +01:00
gtk = {
2024-08-31 16:04:57 +02:00
enable = true;
iconTheme.package = gruvboxPlus;
iconTheme.name = "GruvboxPlus";
2024-11-23 15:30:03 +01:00
gtk2.configLocation = "${config.home.homeDirectory}/.config/gtk-2.0/gtkrc";
2024-08-31 16:04:57 +02:00
};
}