Uninstall nix package manager from Linux
Introduction
As of Apr'22 nix package manager does not have official uninstaller. This post provides a way to remove nix. It can also be found in man page.
Uninstall NIX
Remove
nix
related folders and Filesrm -rf $HOME/{.nix-channels,.nix-defexpr,.nix-profile,.config/nixpkgs} sudo rm -rf /nix
Remove all references to
nix
in~/.profile
,~/.bashrc
and~/.zshrc
Cleanup
systemd
sudo systemctl stop nix-daemon.socket sudo systemctl stop nix-daemon.service sudo systemctl disable nix-daemon.socket sudo systemctl disable nix-daemon.service sudo systemctl daemon-reload
Delete
nixbldX
usersgrep nixbld /etc/passwd | awk -F ":" '{print $1}' > /tmp/nixusers cat /tmp/nixusers | xargs -t -n 1 sudo userdel -r