Document how to uninstall

This commit is contained in:
Evan Relf 2020-01-14 10:08:08 -08:00
parent 63818ff3fc
commit edbf27af76
No known key found for this signature in database
GPG Key ID: F1FE2BF25D76D2ED

View File

@ -77,3 +77,25 @@ before running the nix or nixops command.
Something is wrong with LinuxKit. See the debugging section to try things out. Something is wrong with LinuxKit. See the debugging section to try things out.
Leave an issue at https://github.com/nix-community/linuxkit-nix/issues Leave an issue at https://github.com/nix-community/linuxkit-nix/issues
## Uninstalling
```sh
# Remove configuration
rm -rf ~/.cache/nix-linuxkit-builder/
# Remove build machine
# (edit manually if you have other configuration here)
sudo rm -f /etc/nix/machines
# Remove LaunchAgent
launchctl stop org.nix-community.linuxkit-builder
rm -f ~/Library/LaunchAgents/org.nix-community.linuxkit-builder.plist
# Remove SSH config
# (edit manually if you have other configuration here)
sudo rm -rf /var/root/.ssh
# Uninstall Nix package
nix-env -e linuxkit-builder
```