mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Nix] Fix builder ssh key
This commit is contained in:
parent
2f20fad072
commit
2ac7d4e239
1 changed files with 2 additions and 2 deletions
|
|
@ -131,8 +131,8 @@ in
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
group = "builder";
|
group = "builder";
|
||||||
hashedPassword = mkForce null; # Must not have a password!
|
hashedPassword = mkForce null; # Must not have a password!
|
||||||
openssh.authorizedKeys.keyFiles = [
|
openssh.authorizedKeys.keys = [
|
||||||
buildUserKeyFile
|
(readFile buildUserPubKeyFile)
|
||||||
];
|
];
|
||||||
shell = pkgs.bashInteractive;
|
shell = pkgs.bashInteractive;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue