diff options
Diffstat (limited to 'custom/uucp.nix')
-rw-r--r-- | custom/uucp.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/uucp.nix b/custom/uucp.nix index f0d98c37..0f5d0e8e 100644 --- a/custom/uucp.nix +++ b/custom/uucp.nix | |||
@@ -28,7 +28,7 @@ let | |||
28 | '') node.hostnames); | 28 | '') node.hostnames); |
29 | sshKeyGen = name: node: '' | 29 | sshKeyGen = name: node: '' |
30 | if [[ ! -e ${cfg.sshKeyDir}/${name} ]]; then | 30 | if [[ ! -e ${cfg.sshKeyDir}/${name} ]]; then |
31 | ssh-keygen ${escapeShellArgs node.generateKey} -f ${cfg.sshKeyDir}/${name} | 31 | ${pkgs.openssh}/bin/ssh-keygen ${escapeShellArgs node.generateKey} -f ${cfg.sshKeyDir}/${name} |
32 | fi | 32 | fi |
33 | ''; | 33 | ''; |
34 | restrictKey = key: '' | 34 | restrictKey = key: '' |