Replace use of stdenv.shell by runtimeShell

This commit is contained in:
Robert Helgesson
2019-08-22 08:35:06 +02:00
parent 7159c293af
commit eb1b86a5ec
4 changed files with 4 additions and 4 deletions

View File

@@ -108,7 +108,7 @@ in
# The activation script is run by a login shell to make sure
# that the user is given a sane Nix environment.
ExecStart = pkgs.writeScript "activate-${username}" ''
#! ${pkgs.stdenv.shell} -el
#! ${pkgs.runtimeShell} -el
echo Activating home-manager configuration for ${username}
exec ${usercfg.home.activationPackage}/activate
'';