Skip to content

Commit

Permalink
docs: fix recommendation comment
Browse files Browse the repository at this point in the history
  • Loading branch information
onsails committed Oct 1, 2023
1 parent 2f375ed commit c46e0b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -495,10 +495,10 @@ Consider the following nixos configuration example:
# 0 - none (---)
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
# It is recommended to get the user name from `config.users.users.<?name>.name` to avoid misconfiguration
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
# It is recommended to get the group name from `config.users.users.<?name>.group` to avoid misconfiguration
sops.secrets.example-secret.group = config.users.users.nobody.group;
}
```
Expand Down

0 comments on commit c46e0b6

Please sign in to comment.