reNixos/wanda/users/users/root.nix
s0me1newithhand7s ceb0ad4b87 wanda: upstream
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-03-25 18:49:51 +03:00

9 lines
144 B
Nix

{lib, ...}: {
users = {
users = {
"root" = {
initialHashedPassword = lib.hashString "sha512" "root";
};
};
};
}