mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 08:46:25 +00:00
9 lines
277 B
Nix
9 lines
277 B
Nix
|
{ sshMatrix, ... }:
|
||
|
{
|
||
|
users.users.pxe = {
|
||
|
# mkpasswd -m sha-512
|
||
|
hashedPassword = "$6$P.52FPzkhqEhwBXH$YAdjuSoboOkgQs6y5JBKOyknQ8Hb.hgsfTPv8ehuI9oyTUbgCp8fD2TsqpDQM8qanmounKKitrcFg4b7aY7Ap0";
|
||
|
openssh.authorizedKeys.keys = sshMatrix.groups.privileged_users;
|
||
|
};
|
||
|
}
|