nixos-config/common/programs/ssh.nix

12 lines
245 B
Nix
Raw Permalink 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;
2025-01-24 11:31:28 +01:00
"cave".publicKey = sshKeys.host.cave;
2024-04-26 15:26:18 +02:00
};
};
}