fix: Remove gtk3 theme

This commit is contained in:
Jan-Bulthuis 2025-11-14 14:22:50 +01:00
parent e0b3fe191c
commit 9d302345ac

View File

@ -18,11 +18,11 @@ in
# TODO: Enable extensions (declaratively) with dconf # TODO: Enable extensions (declaratively) with dconf
home.pointerCursor = { home.pointerCursor = {
enable = true;
name = "capitaine-cursors"; name = "capitaine-cursors";
size = 24; size = 24;
package = pkgs.capitaine-cursors; package = pkgs.capitaine-cursors;
gtk.enable = true; gtk.enable = true;
x11.enable = true;
}; };
home.packages = home.packages =
@ -53,16 +53,19 @@ in
gnome-calendar gnome-calendar
# For theming gtk3 # For theming gtk3
adw-gtk3 # adw-gtk3 # TODO: Do this better, same for morewaita, not sure if it even works
# More icons # More icons
morewaita-icon-theme # morewaita-icon-theme
] ]
++ (with pkgs.gnomeExtensions; [ ++ (with pkgs.gnomeExtensions; [
gsconnect gsconnect
disable-workspace-animation disable-workspace-animation
wallpaper-slideshow wallpaper-slideshow
media-progress media-progress
mpris-label
pip-on-top
rounded-window-corners-reborn
]); ]);
# Set up gnome terminal as changing the default terminal is a pain # Set up gnome terminal as changing the default terminal is a pain
@ -75,19 +78,19 @@ in
}; };
# Enable and set the gtk themes # Enable and set the gtk themes
gtk = { # gtk = {
enable = true; # enable = true;
gtk3.extraConfig = { # gtk3.extraConfig = {
gtk-theme-name = "adw-gtk3"; # gtk-theme-name = "adw-gtk3";
}; # };
gtk4.extraConfig = { # gtk4.extraConfig = {
gtk-theme-name = "Adwaita"; # gtk-theme-name = "Adwaita";
}; # };
}; # };
# Set the theme with dconf # Set the theme with dconf
dconf.settings."org/gnome/desktop/interface" = { # dconf.settings."org/gnome/desktop/interface" = {
gtk-theme = "adw-gtk3"; # gtk-theme = "adw-gtk3";
}; # };
}; };
} }