1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-16 05:28:15 +00:00

docs: fix recommendation comment

This commit is contained in:
Andrey Kuznetsov 2023-10-01 13:18:33 +04:00 committed by Jörg Thalheim
parent 2f375ed870
commit e73ba2078c

View file

@ -495,10 +495,10 @@ Consider the following nixos configuration example:
# 0 - none (---) # 0 - none (---)
sops.secrets.example-secret.mode = "0440"; sops.secrets.example-secret.mode = "0440";
# Either a user id or group name representation of the secret owner # 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; sops.secrets.example-secret.owner = config.users.users.nobody.name;
# Either the group id or group name representation of the secret group # 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; sops.secrets.example-secret.group = config.users.users.nobody.group;
} }
``` ```