This commit is contained in:
commit
95a533c876
451 changed files with 18255 additions and 0 deletions
20
docs/modules/nixos/normalUsers.md
Normal file
20
docs/modules/nixos/normalUsers.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Normal Users
|
||||
|
||||
This module automates user creation for normal users.
|
||||
|
||||
View the [*synix* NixOS module on Forgejo](https://git.sid.ovh/sid/synix/tree/master/modules/nixos/normalUsers).
|
||||
|
||||
## Config
|
||||
|
||||
For example:
|
||||
|
||||
```nix
|
||||
imports = [ inputs.synix.nixosModules.normalUsers ]
|
||||
|
||||
config.normalUsers = {
|
||||
alice = {
|
||||
extraGroups = [ "wheel" ];
|
||||
sshKeyFiles = [ ../../users/alice/pubkeys/id_rsa.pub ];
|
||||
};
|
||||
};
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue