mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
15 lines
385 B
Nix
15 lines
385 B
Nix
{ ... }: {
|
|
flake.homeModules.gtk = {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
|
|
};
|
|
}
|