From 034ff33e70624d3af114e4c901a30e1f6521f124 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sat, 1 Oct 2022 18:28:32 +0000 Subject: [PATCH] add more description for mkpasswd salt --- modules/nixos/user.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/nixos/user.nix b/modules/nixos/user.nix index 9d42048..dd5b2bd 100644 --- a/modules/nixos/user.nix +++ b/modules/nixos/user.nix @@ -5,6 +5,7 @@ passwordHash = lib.mkOption { type = lib.types.str; description = "Password created with mkpasswd -m sha-512"; + # Test it by running: mkpasswd -m sha-512 --salt "PZYiMGmJIIHAepTM" }; };