diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-06-27 18:10:21 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-06-27 18:10:21 +0300 |
commit | b212b16a14ea12384c4b19ad453076502855a738 (patch) | |
tree | defd42780c334342e82d59ac927ae070e9af5fd7 /modules/common/users.nix | |
parent | 2024-06-24 (diff) |
2024-06-27
Diffstat (limited to '')
-rw-r--r-- | modules/common/users.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/common/users.nix b/modules/common/users.nix index ba1a89b..b8aca28 100644 --- a/modules/common/users.nix +++ b/modules/common/users.nix @@ -18,7 +18,10 @@ in mutableUsers = false; users = { - root.hashedPassword = "@HASHED_PASSWORD@"; + root = { + hashedPassword = null; + password = null; + }; ${my.username} = { isNormalUser = true; |