{ lib, ... }: { options.modules.mounts.plex = let inherit (lib) mkOption types; in { enable = mkOption { default = false; type = types.bool; }; name = mkOption { default = "plex"; type = types.str; }; extraOptions = with types; mkOption { default = [ ]; type = listOf str; }; }; }