nix-configurations/home/features/desktop/qt.nix

15 lines
193 B
Nix
Raw Permalink Normal View History

2023-04-09 09:12:23 +00:00
{ pkgs, ...}:
2022-12-30 12:05:46 +00:00
{
qt = {
enable = true;
2023-04-12 08:25:36 +00:00
platformTheme = "gtk";
2023-04-09 09:12:23 +00:00
};
gtk = {
enable = true;
theme = {
name = "Dracula";
package = pkgs.dracula-theme;
};
2022-12-30 12:05:46 +00:00
};
}