mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
27 lines
703 B
Nix
27 lines
703 B
Nix
lib:
|
|
nixosConfigurations:
|
|
|
|
let
|
|
sshKnownHostsTxt = builtins.toFile "known_hosts" (lib.concatMapStrings
|
|
(hostName:
|
|
let d = nixosConfigurations.${hostName}.config.deploy;
|
|
in lib.concatMapStrings (key: "${d.ssh.HostName} ${key}\n") d.sshPublicKeys
|
|
)
|
|
(builtins.attrNames nixosConfigurations)
|
|
);
|
|
|
|
attrsToList = lib.mapAttrsToList (n: v: "${n} ${v}");
|
|
attrsToLines = a: lib.concatLines (attrsToList a);
|
|
|
|
in
|
|
builtins.toFile "ssh-config" (
|
|
lib.concatMapStrings
|
|
(host: ''
|
|
Host ${host}
|
|
${attrsToLines nixosConfigurations.${host}.config.deploy.ssh}
|
|
'')
|
|
(builtins.attrNames nixosConfigurations) +
|
|
''
|
|
GlobalKnownHostsFile ${sshKnownHostsTxt}
|
|
''
|
|
)
|