Configure QT

Configure to re use GTK styles to have a streamlined look and feel.
This commit is contained in:
Daniel Siepmann 2022-05-22 15:22:36 +02:00
parent 1436c97f2f
commit e312a830e7
Signed by: Daniel Siepmann
GPG Key ID: 33D6629915560EF4
2 changed files with 11 additions and 0 deletions

View File

@ -55,6 +55,9 @@
inherit pkgs;
};
qt = import ./home/qt.nix {
inherit pkgs;
};
gtk = import ./home/gtk.nix {
inherit pkgs;
};

8
home/qt.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs }:
{
enable = true;
# Re use existing gtk theme
platformTheme = "gtk";
}