Merge pull request #171 from teto/fix-readme

doc: fix path towards the nobody user
This commit is contained in:
Jörg Thalheim 2022-04-12 10:38:11 +01:00 committed by GitHub
commit c2614c4fe6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -503,10 +503,10 @@ Consider the following nixos configuration example:
sops.secrets.example-secret.mode = "0440";
# Either a user id or group name representation of the secret owner
# It is recommended to get the user name from `config.users.<?name>.name` to avoid misconfiguration
sops.secrets.example-secret.owner = config.users.nobody.name;
sops.secrets.example-secret.owner = config.users.users.nobody.name;
# Either the group id or group name representation of the secret group
# It is recommended to get the group name from `config.users.<?name>.group` to avoid misconfiguration
sops.secrets.example-secret.group = config.users.nobody.group;
sops.secrets.example-secret.group = config.users.users.nobody.group;
}
```