7 lines
201 B
Nix
7 lines
201 B
Nix
{ lib, ... }: {
|
|
den.aspects.portmap.nixos.options.den.portmap = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.port;
|
|
readOnly = true;
|
|
default = import ../../../portmap.nix;
|
|
};
|
|
} |