Updated networkmanager things

This commit is contained in:
Tastatur 2023-12-30 22:48:50 +01:00
parent 37411ee25f
commit 652897f86b
2 changed files with 9 additions and 2 deletions

View file

@ -38,6 +38,13 @@ There are different frontends to configure connections but for now lets install
It should be pretty self-explanatory on how to use it.
To make it possible for users to edit connections create the config file `/etc/NetworkManager/conf.d` with:
```
[main]
auth-polkit=false
```
## VPN's
NetworkManager can already use WireGuard but to use other VPN types it might be necessary to install their corresponding plugin. For OpenVPN that would be:

View file

@ -29,7 +29,7 @@ And create a `_power` group for user's to be able to poweroff the system without
Adding a user in alpine can be done using the `setup-user` script. Here we can specify the name, fullname, groups and more:
```
# setup-user -g wheel,plugdev,nix,_power -f "<Full Name>" <username>
# setup-user -g wheel,nix,_power -f "<Full Name>" <username>
# passwd <username>
```
@ -106,7 +106,7 @@ $ fscrypt status /home/<username>
If you have already set up a system with a user but want to add another do this:
```
# setup-user -g (wheel,)plugdev,nix,_power -f "<Full Name>" <username>
# setup-user -g (wheel,)nix,_power -f "<Full Name>" <username>
# passwd <username>
[Change shell in /etc/passwd]
# fscrypt encrypt /home/<username> --user=<username> # Doesn't work yet