Rust rewrite of lethalman's version to clarify the license situation. This forks also makes it possible to use the nix sandbox!
Run and install nix as user without root permissions. Nix-user-chroot requires user namespaces to perform its task (available since linux 3.8). Note that this is not available for unprivileged users in some Linux distributions such as Red Hat Linux, CentOS and Archlinux when using the stock kernel. It should be available in Ubuntu and Debian.
$ unshare --user --pid echo YES
YESThe output should be YES.
If the command is absent, an alternative is to check the kernel compile options:
$ zgrep CONFIG_USER_NS /proc/config.gz
CONFIG_USER_NS=yOn some systems, like Debian or Ubuntu, the kernel configuration is in a different place, so instead use:
$ grep CONFIG_USER_NS /boot/config-$(uname -r)
CONFIG_USER_NS=yOn debian-based system this feature might be disabled by default. However they provide a sysctl switch to enable it at runtime.
On RedHat / CentOS 7.4 user namespaces are disabled by default, but can be enabled by:
- Adding
namespace.unpriv_enable=1to the kernel boot parameters viagrubby echo "user.max_user_namespaces=15076" >> /etc/sysctl.confto increase the number of allowed namespaces above the default 0.
For more details, see the RedHat Documentation
Checkout the latest release and download the binary matching your architecture.
$ git clone https://github.com/nix-community/nix-user-chroot
$ cd nix-user-chroot
$ cargo build --releaseIf you use rustup, you can also build a statically linked version:
$ rustup target add x86_64-unknown-linux-musl
$ cargo build --release --target=x86_64-unknown-linux-muslThis will download and extract latest nix binary tarball from the chroot:
$ mkdir -m 0755 ~/.nix
$ nix-user-chroot ~/.nix bash -c "curl -L https://nixos.org/nix/install | bash"The installation described here will not work on NixOS this way, because you
start with an empty nix store and miss therefore tools like bash and coreutils.
You won't need nix-user-chroot on NixOS anyway since you can get similar
functionality using nix run --store ~/.nix nixpkgs.bash nixpkgs.coreutils:
After installation you can always get into the nix user chroot using:
$ nix-user-chroot ~/.nix bashYou are in a user chroot where / is owned by your user, hence also /nix is
owned by your user. Everything else is bind mounted from the real root.
The nix config is not in /etc/nix but in /nix/etc/nix, so that you can
modify it. This is done with the NIX_CONF_DIR, which you can override at any
time.
These are features the author would like to see, let me know, if you want to work on this:
Instead of
$ mkdir -m 0755 ~/.nix
$ nix-user-chroot ~/.nix bash -c "curl -L https://nixos.org/nix/install | bash"it should just be:
$ nix-user-chroot --installThis assumes we just install to $XDG_DATA_HOME or $HOME/.data/nix by default.
Since not all linux distributions allow user namespaces by default, we will need packages for those that install setuid binaries to achieve the same.