nixos-config/common/programs/ssh.nix

12 lines
267 B
Nix
Raw Normal View History

2024-04-26 15:26:18 +02:00
let
sshKeys = import ../../crypto/ssh-keys.nix;
in {
programs.ssh = {
knownHosts = {
"enry".publicKey = sshKeys.host.enry;
"phoenix".publicKey = sshKeys.host.phoenix;
"new-new-phoenix".publicKey = sshKeys.host.new-new-phoenix;
};
};
}