summary refs log tree commit diff
path: root/nixos/modules/services/x11/desktop-managers/plasma5.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-26 06:49:15 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-27 11:49:46 -0600
commit127bf18a350afa562cad3f8cb3b2f626edd23de0 (patch)
tree3edc31bedef41e96f6a7f5062fb26e3950671a59 /nixos/modules/services/x11/desktop-managers/plasma5.nix
parentb39e491eb521d93ae983bc63b10efad3d147a9cd (diff)
downloadnixpkgs-127bf18a350afa562cad3f8cb3b2f626edd23de0.tar
nixpkgs-127bf18a350afa562cad3f8cb3b2f626edd23de0.tar.gz
nixpkgs-127bf18a350afa562cad3f8cb3b2f626edd23de0.tar.bz2
nixpkgs-127bf18a350afa562cad3f8cb3b2f626edd23de0.tar.lz
nixpkgs-127bf18a350afa562cad3f8cb3b2f626edd23de0.tar.xz
nixpkgs-127bf18a350afa562cad3f8cb3b2f626edd23de0.tar.zst
nixpkgs-127bf18a350afa562cad3f8cb3b2f626edd23de0.zip
extra-cmake-modules: Lift Qt dependency
Diffstat (limited to 'nixos/modules/services/x11/desktop-managers/plasma5.nix')
-rw-r--r--nixos/modules/services/x11/desktop-managers/plasma5.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix
index 4dbd8d7a2c0..24225308ffb 100644
--- a/nixos/modules/services/x11/desktop-managers/plasma5.nix
+++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix
@@ -65,10 +65,10 @@ in
 
       security.wrappers = {
         kcheckpass.source = "${plasma5.plasma-workspace.out}/lib/libexec/kcheckpass";
-        "start_kdeinit".source = "${libsForQt5.kinit.out}/lib/libexec/kf5/start_kdeinit";
+        "start_kdeinit".source = "${pkgs.kinit.out}/lib/libexec/kf5/start_kdeinit";
       };
 
-      environment.systemPackages = with qt5; with libsForQt5; with plasma5; with kdeApplications;
+      environment.systemPackages = with pkgs; with qt5; with libsForQt5; with plasma5; with kdeApplications;
         [
           frameworkintegration
           kactivities
@@ -213,10 +213,10 @@ in
 
       services.xserver.displayManager.sddm = {
         theme = "breeze";
-        themes = with libsForQt5; with plasma5; [
-          ecm # for the setup-hook
-          plasma-workspace
-          breeze-icons
+        themes = [
+          pkgs.extra-cmake-modules # for the setup-hook
+          plasma5.plasma-workspace
+          pkgs.breeze-icons
         ];
       };