Files
m3ta-home/profiles/contexts/desktop/theme/theme.nix
T

29 lines
651 B
Nix
Raw Normal View History

2026-06-01 20:01:21 +02:00
# GTK and Qt theming — system-wide dark Adwaita/libadwaita-compatible theme.
2026-05-02 09:08:40 +02:00
{
pkgs,
config,
...
}: {
qt = {
enable = true;
platformTheme.name = "gtk";
};
gtk = {
enable = true;
2026-06-01 19:34:00 +02:00
colorScheme = "dark";
2026-05-02 09:08:40 +02:00
theme = {
2026-06-01 20:01:21 +02:00
# Must match a directory in pkgs.adw-gtk3/share/themes.
# "Adwaita" is not provided by this package and makes GTK4 import
# a missing CSS file; use the explicit dark variant instead.
name = "adw-gtk3-dark";
2026-06-01 19:34:00 +02:00
package = pkgs.adw-gtk3;
2026-05-02 09:08:40 +02:00
};
iconTheme = {
2026-06-01 20:01:21 +02:00
name = "Papirus-Dark";
2026-06-01 19:34:00 +02:00
package = pkgs.papirus-icon-theme;
2026-05-02 09:08:40 +02:00
};
gtk4.theme = config.gtk.theme;
};
}