0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

qt5ct module: expose qtstyleplugins

This commit is contained in:
gnidorah 2017-07-23 12:56:04 +03:00
parent 3e430a8ee5
commit 9f61c7f947
3 changed files with 3 additions and 1 deletions

View file

@ -26,6 +26,6 @@ with lib;
###### implementation ###### implementation
config = mkIf config.programs.qt5ct.enable { config = mkIf config.programs.qt5ct.enable {
environment.variables.QT_QPA_PLATFORMTHEME = "qt5ct"; environment.variables.QT_QPA_PLATFORMTHEME = "qt5ct";
environment.systemPackages = [ pkgs.qt5ct ]; environment.systemPackages = with pkgs; [ qt5ct libsForQt5.qtstyleplugins ];
}; };
} }

View file

@ -30,4 +30,5 @@ in {
}; };
meta.maintainers = with maintainers; [ gnidorah ];
} }

View file

@ -42,4 +42,5 @@ in {
}; };
meta.maintainers = with maintainers; [ gnidorah ];
} }