From 68a8bc29517bf4cc858c258d82ca73d47ca5fe52 Mon Sep 17 00:00:00 2001 From: Ryan Mulligan Date: Sat, 3 Sep 2022 14:47:54 -0700 Subject: [PATCH] doc: fix tutorial syntax --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d58887b..b58721d 100644 --- a/README.md +++ b/README.md @@ -232,10 +232,12 @@ but, if you want to (change the system based on your system): ``` 6. Use the secret in your config: ```nix - users.users.user1 = { - isNormalUser = true; - passwordFile = config.age.secrets.secret1.path; - }; + { + users.users.user1 = { + isNormalUser = true; + passwordFile = config.age.secrets.secret1.path; + }; + } ``` 7. NixOS rebuild or use your deployment tool like usual.