1
Fork 0
nixos-system-config/users/hu/packages/gtk.nix

31 lines
482 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2024-06-23 14:40:05 +02:00
home.pointerCursor = {
gtk.enable = true;
name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors;
size = 24;
};
dconf.settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
};
gtk = {
enable = true;
theme = {
2024-06-23 14:40:05 +02:00
name = "adw-gtk3-dark";
package = pkgs.adw-gtk3;
};
2024-06-23 14:40:05 +02:00
iconTheme = {
2024-06-23 14:40:05 +02:00
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
};
};
}