about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-01-26 20:45:55 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-01-26 21:01:07 -0600
commit63ec1a9677adc730df58ef60dfce09e253fb3dbf (patch)
treef75ded11aa7c0928c1459f77e37282d886b9da43 /nixos
parenta55543711e98a16e6611e4eea60581ea6c503dbe (diff)
add stable attrs for plasma5, kf5, and kdeApps
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/desktop-managers/kde5.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix
index c5fc711b779c6..6d6479da2a1ff 100644
--- a/nixos/modules/services/x11/desktop-managers/kde5.nix
+++ b/nixos/modules/services/x11/desktop-managers/kde5.nix
@@ -33,11 +33,11 @@ let
   phononBackendPackages = flip concatMap cfg.phononBackends
     (name: attrByPath [name] (throw "unknown phonon backend `${name}'") phononBackends);
 
-  kf5 = pkgs.kf55;
+  kf5 = pkgs.kf5_stable;
 
-  plasma5 = pkgs.plasma51;
+  plasma5 = pkgs.plasma5_stable;
 
-  kdeApps = pkgs.kdeApps_14_12;
+  kdeApps = pkgs.kdeApps_stable;
 
 in