Files
nix/modules/services/ports.nix
2026-03-03 17:05:04 -06:00

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;
};
}