diff --git a/hosts/uranus/jupyter-container.nix b/hosts/uranus/jupyter-container.nix index 4def45f..64b0efa 100644 --- a/hosts/uranus/jupyter-container.nix +++ b/hosts/uranus/jupyter-container.nix @@ -27,8 +27,8 @@ pkgs.dockerTools.buildImage { useradd-string = (user: is-admin: ''useradd \ -m \ ${if is-admin then "-G ${jupyterAdminGroup}" else ""} \ + -p $(printf "%q" $(cat /pw/hashed-password-${user})) \ ${user} \ - -p $(cat /pw/hashed-password-${user}) \ && ln -s /workdir /home/${user}/shared-workdir \ '');