Clarify uninstallation steps on Linux

Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
This commit is contained in:
Liu Xiaoyi 2022-11-26 22:01:51 +08:00 committed by GitHub
parent 4d55acf515
commit c4ce89f772
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,7 +88,9 @@ extension. The installer will also create `/etc/profile.d/nix.sh`.
### Linux ### Linux
To begin, if you are on Linux with systemd, remove the Nix daemon service: If you are on Linux with systemd:
1. Remove the Nix daemon service:
```console ```console
sudo systemctl stop nix-daemon.service sudo systemctl stop nix-daemon.service
@ -96,13 +98,14 @@ sudo systemctl disable nix-daemon.socket nix-daemon.service
sudo systemctl daemon-reload sudo systemctl daemon-reload
``` ```
Then you can remove systemd service files: 1. Remove systemd service files:
```console ```console
sudo rm /etc/systemd/system/nix-daemon.service /etc/systemd/system/nix-daemon.socket sudo rm /etc/systemd/system/nix-daemon.service /etc/systemd/system/nix-daemon.socket
``` ```
Also, the installer script uses systemd-tmpfiles (if presents) to create the socket directory. You may also want to remove the configuration for that: 1. The installer script uses systemd-tmpfiles to create the socket directory.
You may also want to remove the configuration for that:
```console ```console
sudo rm /etc/tmpfiles.d/nix-daemon.conf sudo rm /etc/tmpfiles.d/nix-daemon.conf