From c46e0b65c52330c00032ad3395faa3bc1f5a2069 Mon Sep 17 00:00:00 2001 From: Andrey Kuznetsov Date: Sun, 1 Oct 2023 13:18:33 +0400 Subject: [PATCH] docs: fix recommendation comment --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d1989ad..644f8cea 100644 --- a/README.md +++ b/README.md @@ -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` to avoid misconfiguration + # It is recommended to get the user name from `config.users.users..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..group` to avoid misconfiguration + # It is recommended to get the group name from `config.users.users..group` to avoid misconfiguration sops.secrets.example-secret.group = config.users.users.nobody.group; } ```