about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2018-08-07 17:56:54 +0800
committerGitHub <noreply@github.com>2018-08-07 17:56:54 +0800
commit8f36a3185fccbc8833424ca9a625c0c81d5e1444 (patch)
treed3ca200bf4fe4561329d76337c124f2172863731 /nixos
parent90b579809067cacfc04d157ff9eaa9c5db48e561 (diff)
parent60e1e812010c632a9b07a3c455b1804b86583d78 (diff)
downloadnixlib-8f36a3185fccbc8833424ca9a625c0c81d5e1444.tar
nixlib-8f36a3185fccbc8833424ca9a625c0c81d5e1444.tar.gz
nixlib-8f36a3185fccbc8833424ca9a625c0c81d5e1444.tar.bz2
nixlib-8f36a3185fccbc8833424ca9a625c0c81d5e1444.tar.lz
nixlib-8f36a3185fccbc8833424ca9a625c0c81d5e1444.tar.xz
nixlib-8f36a3185fccbc8833424ca9a625c0c81d5e1444.tar.zst
nixlib-8f36a3185fccbc8833424ca9a625c0c81d5e1444.zip
Merge pull request #44544 from bkchr/plasma_activation_script_use_absolute_path
services.plasma5: Make activationscript use absolute path to
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/desktop-managers/plasma5.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix
index 17733aa7e4f6..83d1957a646a 100644
--- a/nixos/modules/services/x11/desktop-managers/plasma5.nix
+++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix
@@ -224,7 +224,7 @@ in
       # Update the start menu for each user that has `isNormalUser` set.
       system.activationScripts.plasmaSetup = stringAfter [ "users" "groups" ]
         (concatStringsSep "\n"
-          (mapAttrsToList (name: value: "${pkgs.su}/bin/su ${name} -c kbuildsycoca5")
+          (mapAttrsToList (name: value: "${pkgs.su}/bin/su ${name} -c ${pkgs.libsForQt5.kservice}/bin/kbuildsycoca5")
             (filterAttrs (n: v: v.isNormalUser) config.users.users)));
     })
   ];