Few mistakes and a disclaimer

This commit is contained in:
Nox Sluijtman 2022-09-19 18:50:04 +02:00
parent 32eee0a625
commit ede17f461f

View file

@ -32,6 +32,9 @@ But that doesn't take away from the fact that the official instructions tell you
No, that's part of the beauty of Nix.
Pretty much everything it does lives in `/nix` and is softlinked into place, meaning it never interferes with your existing package manager.
_*DISCLAIMER*_: Debian Stable at time of writing has Nix version `2.3.1`, which appears to have some issues that would be fixed by moving to a later version.
Using the official instructions would sidestep this.
# Installation Process
## Package Installation
@ -87,12 +90,11 @@ doas rc-service nix-daemon start
## Groups
Next step is to add your account to the `nix` group.
Next step is to add your account to the `nix-user` or `nix` group depending whether you are on Alpine or Debian respectively.
On Debian this can be done with:
```sh
sudo usermod -aG nix $USER
sudo usermod -aG nix-user $USER
```
And on Alpine this can be done with: