2026-05-02 09:08:40 +02:00
|
|
|
# GTK and Qt theming — Dracula theme with matching icons and cursor.
|
|
|
|
|
{
|
|
|
|
|
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 19:34:00 +02:00
|
|
|
name = "Adwaita";
|
|
|
|
|
package = pkgs.adw-gtk3;
|
2026-05-02 09:08:40 +02:00
|
|
|
};
|
|
|
|
|
iconTheme = {
|
2026-06-01 19:34:00 +02:00
|
|
|
name = "Papirus";
|
|
|
|
|
package = pkgs.papirus-icon-theme;
|
2026-05-02 09:08:40 +02:00
|
|
|
};
|
|
|
|
|
gtk4.theme = config.gtk.theme;
|
|
|
|
|
};
|
|
|
|
|
}
|