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

15 lines
193 B
Nix

{ pkgs, ...}:
{
qt = {
enable = true;
platformTheme = "gtk";
};
gtk = {
enable = true;
theme = {
name = "Dracula";
package = pkgs.dracula-theme;
};
};
}