nixos: drop references to kde4

Excluding modules/programs/environment.nix for PATHand QT_PLUGIN_PATH to allow the programs to continue running.
This commit is contained in:
Graham Christensen
2017-02-11 14:01:13 -05:00
parent 3cec7d10df
commit b1a05a0865
6 changed files with 7 additions and 16 deletions
@@ -2,9 +2,7 @@
with lib;
let
isBluez4 = config.services.xserver.desktopManager.kde4.enable;
bluez-bluetooth = if isBluez4 then pkgs.bluez4 else pkgs.bluez;
bluez-bluetooth = pkgs.bluez;
in
{
@@ -38,7 +36,7 @@ in
aliases = [ "dbus-org.bluez.service" ];
};
systemd.user.services.obex = mkIf (!isBluez4) {
systemd.user.services.obex = {
aliases = [ "dbus-org.bluez.obex.service" ];
};