aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/programs/qt5ct.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/programs/qt5ct.nix')
-rw-r--r--nixpkgs/nixos/modules/programs/qt5ct.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/programs/qt5ct.nix b/nixpkgs/nixos/modules/programs/qt5ct.nix
new file mode 100644
index 00000000000..aeb7fc50849
--- /dev/null
+++ b/nixpkgs/nixos/modules/programs/qt5ct.nix
@@ -0,0 +1,31 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+{
+ meta.maintainers = [ maintainers.romildo ];
+
+ ###### interface
+ options = {
+ programs.qt5ct = {
+ enable = mkOption {
+ default = false;
+ type = types.bool;
+ description = ''
+ Whether to enable the Qt5 Configuration Tool (qt5ct), a
+ program that allows users to configure Qt5 settings (theme,
+ font, icons, etc.) under desktop environments or window
+ manager without Qt integration.
+
+ Official home page: <link xlink:href="https://sourceforge.net/projects/qt5ct/">https://sourceforge.net/projects/qt5ct/</link>
+ '';
+ };
+ };
+ };
+
+ ###### implementation
+ config = mkIf config.programs.qt5ct.enable {
+ environment.variables.QT_QPA_PLATFORMTHEME = "qt5ct";
+ environment.systemPackages = with pkgs; [ qt5ct libsForQt5.qtstyleplugins ];
+ };
+}