sneeuwvlok/interfaces/servarr.nix
2026-04-02 11:37:34 +02:00

16 lines
286 B
Nix

{lib, ...}: let
inherit (lib) mkOption types;
in {
options = {
services = mkOption {
type = types.attrsOf (types.submodule {
options = {
port = mkOption {
type = types.port;
};
};
});
default = {};
};
};
}