mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2025-03-21 04:49:30 +00:00
Hotfix inability to build when custom user don't have ssh keys
This commit is contained in:
parent
63aaeec08c
commit
3f42ad5c68
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ in
|
|||
value = {
|
||||
isNormalUser = true;
|
||||
hashedPassword = user.hashedPassword;
|
||||
openssh.authorizedKeys.keys = user.sshKeys;
|
||||
openssh.authorizedKeys.keys = (if user ? sshKeys then user.sshKeys else []);
|
||||
};
|
||||
})
|
||||
cfg.users);
|
||||
|
|
Loading…
Add table
Reference in a new issue