about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-07-26 22:44:45 +0800
committerGitHub <noreply@github.com>2017-07-26 22:44:45 +0800
commit588e3da3f430c5915f9b368c714cf5273c516da3 (patch)
tree9c676e02303a7e78a0075e4369481a94131253e5
parente420be7ab5febf16a6e5612b0ce31b37d9587b98 (diff)
parent9f61c7f947e256f12a2952e316007e3fbc74316c (diff)
downloadnixlib-588e3da3f430c5915f9b368c714cf5273c516da3.tar
nixlib-588e3da3f430c5915f9b368c714cf5273c516da3.tar.gz
nixlib-588e3da3f430c5915f9b368c714cf5273c516da3.tar.bz2
nixlib-588e3da3f430c5915f9b368c714cf5273c516da3.tar.lz
nixlib-588e3da3f430c5915f9b368c714cf5273c516da3.tar.xz
nixlib-588e3da3f430c5915f9b368c714cf5273c516da3.tar.zst
nixlib-588e3da3f430c5915f9b368c714cf5273c516da3.zip
Merge pull request #26761 from gnidorah/master3
qt5ct module: expose qtstyleplugins
-rw-r--r--nixos/modules/programs/qt5ct.nix2
-rw-r--r--nixos/modules/services/misc/autorandr.nix1
-rw-r--r--nixos/modules/services/misc/fstrim.nix1
3 files changed, 3 insertions, 1 deletions
diff --git a/nixos/modules/programs/qt5ct.nix b/nixos/modules/programs/qt5ct.nix
index 550634e65be9..aeb7fc508495 100644
--- a/nixos/modules/programs/qt5ct.nix
+++ b/nixos/modules/programs/qt5ct.nix
@@ -26,6 +26,6 @@ with lib;
   ###### implementation
   config = mkIf config.programs.qt5ct.enable {
     environment.variables.QT_QPA_PLATFORMTHEME = "qt5ct";
-    environment.systemPackages = [ pkgs.qt5ct ];
+    environment.systemPackages = with pkgs; [ qt5ct libsForQt5.qtstyleplugins ];
   };
 }
diff --git a/nixos/modules/services/misc/autorandr.nix b/nixos/modules/services/misc/autorandr.nix
index 792a4c8375d9..3020130ad1f6 100644
--- a/nixos/modules/services/misc/autorandr.nix
+++ b/nixos/modules/services/misc/autorandr.nix
@@ -30,4 +30,5 @@ in {
 
   };
 
+  meta.maintainers = with maintainers; [ gnidorah ];
 }
diff --git a/nixos/modules/services/misc/fstrim.nix b/nixos/modules/services/misc/fstrim.nix
index e89366cbafed..15f283f093c0 100644
--- a/nixos/modules/services/misc/fstrim.nix
+++ b/nixos/modules/services/misc/fstrim.nix
@@ -42,4 +42,5 @@ in {
 
   };
 
+  meta.maintainers = with maintainers; [ gnidorah ];
 }