summary refs log tree commit diff
path: root/nixos/modules/services/misc/nix-ssh-serve.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-25 13:42:44 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-25 14:29:08 +0200
commit72af71d626d2e82f2db397a06a820da51c30bb0a (patch)
tree731d25ac5c30fde7ef204eb8a9e59a94823613b0 /nixos/modules/services/misc/nix-ssh-serve.nix
parent77dbe2f46e8946be6d0e6706fb9acf807e135b8f (diff)
downloadnixpkgs-72af71d626d2e82f2db397a06a820da51c30bb0a.tar
nixpkgs-72af71d626d2e82f2db397a06a820da51c30bb0a.tar.gz
nixpkgs-72af71d626d2e82f2db397a06a820da51c30bb0a.tar.bz2
nixpkgs-72af71d626d2e82f2db397a06a820da51c30bb0a.tar.lz
nixpkgs-72af71d626d2e82f2db397a06a820da51c30bb0a.tar.xz
nixpkgs-72af71d626d2e82f2db397a06a820da51c30bb0a.tar.zst
nixpkgs-72af71d626d2e82f2db397a06a820da51c30bb0a.zip
nix-ssh: Don't use a shell that refers to a store path
Diffstat (limited to 'nixos/modules/services/misc/nix-ssh-serve.nix')
-rw-r--r--nixos/modules/services/misc/nix-ssh-serve.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/nix-ssh-serve.nix b/nixos/modules/services/misc/nix-ssh-serve.nix
index 89c64d22a63..d70bd855c7f 100644
--- a/nixos/modules/services/misc/nix-ssh-serve.nix
+++ b/nixos/modules/services/misc/nix-ssh-serve.nix
@@ -29,7 +29,7 @@ with lib;
     users.extraUsers.nix-ssh = {
       description = "Nix SSH substituter user";
       uid = config.ids.uids.nix-ssh;
-      shell = pkgs.stdenv.shell;
+      useDefaultShell = true;
     };
 
     services.openssh.enable = true;