mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 18:30:46 +02:00
17 lines
339 B
Nix
17 lines
339 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# gtk config
|
|
gtk.theme = {
|
|
enable = true;
|
|
Gruvbox-GTK-Theme-BL-MB = {
|
|
enable = true;
|
|
name = "Gruvbox-GTK-Theme-BL-MB";
|
|
package = pkgs.gruvbox-gtk-theme;
|
|
};
|
|
};
|
|
# to resolve this https://wiki.nixos.org/wiki/Home_Manager#I_cannot_set_GNOME_or_Gtk_themes_via_Home_Manager
|
|
}
|