mirror of
https://gitlab.com/EternalWanderer/voidcruiser.nl
synced 2024-11-29 04:13:51 +01:00
Few mistakes and a disclaimer
This commit is contained in:
parent
32eee0a625
commit
ede17f461f
|
@ -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.
|
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.
|
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
|
# Installation Process
|
||||||
|
|
||||||
## Package Installation
|
## Package Installation
|
||||||
|
@ -87,12 +90,11 @@ doas rc-service nix-daemon start
|
||||||
|
|
||||||
## Groups
|
## 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:
|
On Debian this can be done with:
|
||||||
```sh
|
```sh
|
||||||
sudo usermod -aG nix $USER
|
sudo usermod -aG nix-user $USER
|
||||||
```
|
```
|
||||||
|
|
||||||
And on Alpine this can be done with:
|
And on Alpine this can be done with:
|
||||||
|
|
Loading…
Reference in a new issue