depot/modules/port-magic/default.nix

12 lines
188 B
Nix
Raw Normal View History

2021-11-29 02:37:49 +02:00
{ config, lib, ... }:
with lib;
2022-06-18 02:57:06 +03:00
{
options.links = mkOption {
type = types.attrsOf (types.submodule ./link.nix);
description = "Port Magic links.";
default = {};
2021-11-29 02:37:49 +02:00
};
}