2021-01-28 17:08:08 +01:00
|
|
|
let
|
|
|
|
sources = import ../nix/sources.nix;
|
|
|
|
|
|
|
|
pkgs = import sources.nixpkgs { };
|
|
|
|
lib = pkgs.lib;
|
|
|
|
in
|
|
|
|
lib.mapAttrs
|
|
|
|
(hostname: options: {
|
|
|
|
inherit hostname;
|
|
|
|
target =
|
|
|
|
if lib.hasAttr "target" options
|
|
|
|
then options.target
|
|
|
|
else "root@${hostname}";
|
|
|
|
})
|
|
|
|
{
|
|
|
|
nunotaba = { };
|
|
|
|
sayuri = { };
|
2021-02-01 17:33:29 +01:00
|
|
|
vueko = {
|
|
|
|
target = "root@vueko.sbruder.de";
|
|
|
|
};
|
2021-01-28 17:08:08 +01:00
|
|
|
}
|