switch thinkpad to gnome

This commit is contained in:
Yan Lin 2025-12-01 17:59:57 +01:00
parent e0a3a07dae
commit dddec191e7
3 changed files with 15 additions and 7 deletions

View file

@ -48,10 +48,9 @@ in
(lib.optionals (!cfg.alwaysShowTopBar) [ "hidetopbar@mathieu.bidon.ca" ])
++ [
"pano@elhan.io"
"rounded-window-corners@fxgn"
];
favorite-apps = [
"Thunar.desktop"
"thunar.desktop"
"com.mitchellh.ghostty.desktop"
"firefox.desktop"
"obsidian.desktop"
@ -128,9 +127,19 @@ in
# Configure GTK theme and icon theme
gtk = {
enable = true;
theme = {
name = "Adwaita-dark";
package = pkgs.gnome-themes-extra;
};
iconTheme = {
package = pkgs.adwaita-icon-theme;
name = "Adwaita";
package = pkgs.papirus-icon-theme;
name = "Papirus-Dark";
};
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
};
@ -156,7 +165,6 @@ in
(lib.optionals (!cfg.alwaysShowTopBar) [ gnomeExtensions.hide-top-bar ])
++ [
gnomeExtensions.pano
gnomeExtensions.rounded-window-corners
xfce.thunar
];