12 lines
245 B
Nix
12 lines
245 B
Nix
let
|
|
sshKeys = import ../../crypto/ssh-keys.nix;
|
|
in {
|
|
programs.ssh = {
|
|
knownHosts = {
|
|
"enry".publicKey = sshKeys.host.enry;
|
|
"phoenix".publicKey = sshKeys.host.phoenix;
|
|
"cave".publicKey = sshKeys.host.cave;
|
|
};
|
|
};
|
|
}
|