use gtk platform theme for qt apps

This commit is contained in:
Adithya 2024-04-21 21:43:32 +05:30
parent 6a69870128
commit 1fd4bfc1e1
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 7 additions and 1 deletions

View file

@ -1,5 +1,5 @@
_: { _: {
imports = [ ./programs ./services ./wm ./gtk.nix ./persistence.nix ]; imports = [ ./programs ./services ./wm ./gtk.nix ./qt.nix ./persistence.nix ];
home.stateVersion = "23.11"; home.stateVersion = "23.11";

6
home/qt.nix Normal file
View file

@ -0,0 +1,6 @@
_: {
qt = {
enable = true;
platformTheme.name = "gtk3";
};
}