14 lines
516 B
Nix
14 lines
516 B
Nix
{ depot, lib, ... }:
|
|
let
|
|
filtered = lib.filterAttrs (_: host: host.ssh.enable) depot.hours;
|
|
idCapable = lib.filterAttrs (_: host: host.ssh.id.publicKey != null) filtered;
|
|
configCapable = lib.filterAttrs (_: host: host.ssh.extraConfig != "") filtered;
|
|
|
|
sshHosts = lib.mapAttrs (_: host: host.ssh.id) idCapable;
|
|
sshExtras = lib.mapAttrsToList (_: host: host.ssh.extraConfig) configCapable;
|
|
in {
|
|
programs.ssh = {
|
|
knownHosts = sshHosts;
|
|
extraConfig = builtins.concatStringsSep "\n" sshExtras;
|
|
};
|
|
}
|