summary refs log tree commit diff
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2020-04-05 08:37:09 +0300
committergnidorah <gnidorah@users.noreply.github.com>2020-04-05 08:38:08 +0300
commita6580c31644a1f3cad187e15122ee756af57af4a (patch)
treedc00383de67de7c7abf31c2c084593cb3950c8c2
parent84d0a2350646acb3f9865e2e9fd72754f263c8fa (diff)
downloadnixpkgs-a6580c31644a1f3cad187e15122ee756af57af4a.tar
nixpkgs-a6580c31644a1f3cad187e15122ee756af57af4a.tar.gz
nixpkgs-a6580c31644a1f3cad187e15122ee756af57af4a.tar.bz2
nixpkgs-a6580c31644a1f3cad187e15122ee756af57af4a.tar.lz
nixpkgs-a6580c31644a1f3cad187e15122ee756af57af4a.tar.xz
nixpkgs-a6580c31644a1f3cad187e15122ee756af57af4a.tar.zst
nixpkgs-a6580c31644a1f3cad187e15122ee756af57af4a.zip
nixos/qt5: support adwaita-dark theme
-rw-r--r--nixos/modules/config/qt5.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/nixos/modules/config/qt5.nix b/nixos/modules/config/qt5.nix
index d9dec74f155..eabba9ad95f 100644
--- a/nixos/modules/config/qt5.nix
+++ b/nixos/modules/config/qt5.nix
@@ -6,8 +6,8 @@ let
 
   cfg = config.qt5;
 
-  isQGnome = cfg.platformTheme == "gnome" && cfg.style == "adwaita";
-  isQtStyle = cfg.platformTheme == "gtk2" && cfg.style != "adwaita";
+  isQGnome = cfg.platformTheme == "gnome" && builtins.elem cfg.style ["adwaita" "adwaita-dark"];
+  isQtStyle = cfg.platformTheme == "gtk2" && !(builtins.elem cfg.style ["adwaita" "adwaita-dark"]);
 
   packages = if isQGnome then [ pkgs.qgnomeplatform pkgs.adwaita-qt ]
     else if isQtStyle then [ pkgs.libsForQt5.qtstyleplugins ]
@@ -55,6 +55,7 @@ in
       style = mkOption {
         type = types.enum [
           "adwaita"
+          "adwaita-dark"
           "cleanlooks"
           "gtk2"
           "motif"
@@ -71,6 +72,7 @@ in
           <variablelist>
             <varlistentry>
               <term><literal>adwaita</literal></term>
+              <term><literal>adwaita-dark</literal></term>
               <listitem><para>Use Adwaita Qt style with
                 <link xlink:href="https://github.com/FedoraQt/adwaita-qt">adwaita</link>
               </para></listitem>