From 9d13b571624f7af5a279eb11a0b6f34123c7bffa Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Tue, 12 Apr 2022 10:18:55 +0200 Subject: [PATCH] doc: fix path towards the nobody user --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ee56fd6..5a57e29 100644 --- a/README.md +++ b/README.md @@ -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` 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..group` to avoid misconfiguration - sops.secrets.example-secret.group = config.users.nobody.group; + sops.secrets.example-secret.group = config.users.users.nobody.group; } ```