diff --git a/hosts/uranus/jupyter-container.nix b/hosts/uranus/jupyter-container.nix index 8e54483..ee824d7 100644 --- a/hosts/uranus/jupyter-container.nix +++ b/hosts/uranus/jupyter-container.nix @@ -25,6 +25,7 @@ pkgs.dockerTools.buildImage { let cont-interpreter = "/bin/bash"; useradd-string = (user: hashed-pw: is-admin: ''useradd \ + -m \ ${if is-admin then "-G ${jupyterAdminGroup}" else ""} \ -p ${hashed-pw} \ ${user}'');