let
  sources = import ../../nix/sources.nix;
in
{
  meta = {
    nixpkgs = import sources.nixpkgs {};
  };

  yodaTux = { name, nodes, ... }: {
    imports = [ ./configuration.nix ];

    deployment = {
      allowLocalDeployment = true;
      targetHost = null;
    };
  };
}