summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-03-11 09:34:56 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-03-11 11:49:28 -0500
commit5b5b7aa951dd371cd8ee1a88997ede0c3c17cb10 (patch)
tree38c10f112ade1c87913f241f87958258993080d3 /nixos
parentccef701daa49e8b7445876e54ef93c54c68621d7 (diff)
downloadnixlib-5b5b7aa951dd371cd8ee1a88997ede0c3c17cb10.tar
nixlib-5b5b7aa951dd371cd8ee1a88997ede0c3c17cb10.tar.gz
nixlib-5b5b7aa951dd371cd8ee1a88997ede0c3c17cb10.tar.bz2
nixlib-5b5b7aa951dd371cd8ee1a88997ede0c3c17cb10.tar.lz
nixlib-5b5b7aa951dd371cd8ee1a88997ede0c3c17cb10.tar.xz
nixlib-5b5b7aa951dd371cd8ee1a88997ede0c3c17cb10.tar.zst
nixlib-5b5b7aa951dd371cd8ee1a88997ede0c3c17cb10.zip
kde5: add kde-workspace and kde-runtime to systemPackages
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/desktop-managers/kde5.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix
index 9c3c65dcfaa7..4cdc880d04cf 100644
--- a/nixos/modules/services/x11/desktop-managers/kde5.nix
+++ b/nixos/modules/services/x11/desktop-managers/kde5.nix
@@ -88,7 +88,9 @@ in
     };
 
     environment.systemPackages =
-      [
+      filter isDerivation (builtins.attrValues plasma5)
+      ++ filter isDerivation (builtins.attrValues kf5)
+      ++ [
         pkgs.qt4 # qtconfig is the only way to set Qt 4 theme
 
         kdeApps.kde-baseapps
@@ -97,13 +99,12 @@ in
         kdeApps.konsole
         kdeApps.oxygen-icons
 
+        kdeApps.kde-runtime
+
         pkgs.hicolor_icon_theme
 
         pkgs.orion # GTK theme, nearly identical to Breeze
-      ]
-      ++ filter isDerivation (builtins.attrValues plasma5)
-      ++ filter isDerivation (builtins.attrValues kf5)
-      ++ phononBackendPackages;
+      ] ++ phononBackendPackages;
 
     environment.pathsToLink = [ "/share" ];