nixos-config/machines/default.nix

25 lines
427 B
Nix
Raw Normal View History

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 = { };
vueko = {
target = "root@vueko.sbruder.de";
};
2021-01-26 18:42:42 +01:00
fuuko = {
target = "root@fuuko.home.sbruder.de";
2021-01-26 18:42:42 +01:00
};
}