Files
m3ta-home/profiles/contexts/desktop/theme/theme.nix
T
2026-06-01 19:34:00 +02:00

26 lines
431 B
Nix

# GTK and Qt theming — Dracula theme with matching icons and cursor.
{
pkgs,
config,
...
}: {
qt = {
enable = true;
platformTheme.name = "gtk";
};
gtk = {
enable = true;
colorScheme = "dark";
theme = {
name = "Adwaita";
package = pkgs.adw-gtk3;
};
iconTheme = {
name = "Papirus";
package = pkgs.papirus-icon-theme;
};
gtk4.theme = config.gtk.theme;
};
}