Files
m3ta-home/profiles/contexts/desktop/theme/theme.nix
T
2026-06-01 20:10:12 +02:00

26 lines
450 B
Nix

# GTK and Qt theming — system-wide dark Adwaita/libadwaita-compatible theme.
{
pkgs,
config,
...
}: {
qt = {
enable = true;
platformTheme.name = "gtk";
};
gtk = {
enable = true;
colorScheme = "dark";
theme = {
name = "adw-gtk3-dark";
package = pkgs.adw-gtk3;
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
gtk4.theme = config.gtk.theme;
};
}