2022-10-17 15:54:48 +03:00
|
|
|
{ lib, ... }:
|
2021-11-29 02:37:49 +02:00
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|