depot/cluster/lib/port-magic-multi.nix

12 lines
237 B
Nix
Raw Normal View History

2022-10-22 14:30:09 +03:00
{ config, lib, ... }:
with lib;
{
options.hostLinks = mkOption {
type = types.attrsOf (types.attrsOf (types.submodule ../../modules/port-magic/link.nix));
description = "Port Magic links, per host.";
default = {};
};
}