{ flake, pkgs, labHelpers, ... }: let inherit (import ./config { inherit flake pkgs; }) opencloudVM; inherit (flake.config.people) user0; inherit (flake.config.services.instances) opencloud; interface0Cfg = opencloud.interfaces.interface0; opencloudNick = opencloudVM { user = user0; ip = interface0Cfg.microvm.ip; mac = interface0Cfg.microvm.mac; userMac = interface0Cfg.microvm.macUser; ssh = interface0Cfg.microvm.ssh; mnt = ""; host = interface0Cfg.domain; }; # opencloudStacie = opencloudVM { # user = "stacie"; # ip = ipAddress id1; # mac = "02:00:00:00:${id1}:${id1}"; # userMac = "02:00:00:00:00:${id1}"; # ssh = opencloud.ssh1; # mnt = guestPath "stacie"; # host = ""; # }; # opencloudGarnet = opencloudVM { # user = "garnet"; # ip = ipAddress id2; # mac = "02:00:00:00:${id2}:${id2}"; # userMac = "02:00:00:00:00:${id2}"; # ssh = opencloud.ssh2; # mnt = guestPath "garnet"; # host = ""; # }; in opencloudNick # // opencloudStacie // opencloudGarnet