summary refs log tree commit diff
path: root/nixos/modules/programs/qt5ct.nix
blob: 88e861bf4031a26615cff6b55ec0d9e8ce05e647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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; [ libsForQt5.qt5ct ];
  };
}