mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-23 12:01:27 +00:00
Default root ssh key (empty)
This commit is contained in:
parent
b8bdb65e6d
commit
2e40bf243b
|
@ -50,7 +50,7 @@ in
|
|||
resticPassword = (if jsonData ? "resticPassword" then jsonData.resticPassword else null);
|
||||
ssh = {
|
||||
enable = (if jsonData ? "ssh.enable" then jsonData.ssh.enable else true);
|
||||
rootKeys = (if jsonData ? "ssh.rootKeys" then jsonData.ssh.rootKeys else [ ]);
|
||||
rootKeys = (if jsonData ? "ssh.rootKeys" then jsonData.ssh.rootKeys else [ "" ]);
|
||||
passwordAuthentication = (if jsonData ? "ssh.passwordAuthentication" then jsonData.ssh.passwordAuthentication else true);
|
||||
};
|
||||
users = (if jsonData ? "users" then jsonData.users else [ ]);
|
||||
|
|
Loading…
Reference in a new issue