26 lines
450 B
Nix
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;
|
|
};
|
|
}
|