Nix setup on other distro.
sudo pacman -S nix
sudo systemctl enable nix-daemon
sudo usermod -a -G nix-users $USER
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
nix-channel --update
alias nsz="nix-shell --command 'zsh'"
if [ -n "$IN_NIX_SHELL" ]; then
export PS1="%F{blue} $PS1"
fi