1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/dot/ssh.nix

11 lines
361 B
Nix
Raw Normal View History

{ lib }:
with lib;
let huServer = name: {
"${name}" = {
hostname = "${name}.informatik.hu-berlin.de";
user = (import ../secrets.nix).eduroam.identity;
identityFile = "~/.ssh/hu";
};
};
in lists.foldr (x: xs: huServer x // xs) {} [ "rabe" "star" "gruenau" "gruenau1" "gruenau2" "gruenau3" "gruenau4" "gruenau5" "gruenau6" "gruenau7" "gruenau8" ]