inputs: { options.nixos.services = let inherit (inputs.lib) mkOption types; in { xrayClient = { enable = mkOption { type = types.bool; default = false; }; serverAddress = mkOption { type = types.nonEmptyStr; }; serverName = mkOption { type = types.nonEmptyStr; }; dns = mkOption { type = types.submodule { options = { hosts = mkOption { type = types.attrsOf types.nonEmptyStr; default = {}; }; extraInterfaces = mkOption { type = types.listOf types.nonEmptyStr; default = []; }; }; }; }; }; xrayServer = { enable = mkOption { type = types.bool; default = false; }; serverName = mkOption { type = types.nonEmptyStr; }; }; }; config = let inherit (inputs.lib) mkMerge mkIf; inherit (inputs.localLib) stripeTabs attrsToList; inherit (inputs.config.nixos.services) xrayClient xrayServer; inherit (builtins) map listToAttrs toString genList length; in mkMerge [ ( mkIf xrayClient.enable { services = { dnsmasq = { enable = true; settings = { no-poll = true; log-queries = true; server = [ "127.0.0.1#10853" ]; interface = xrayClient.dns.extraInterfaces ++ [ "lo" ]; bind-dynamic = true; ipset = [ "/developer.download.nvidia.com/noproxy_net" "/yuanshen.com/noproxy_net" ]; address = map (host: "/${host.name}/${host.value}") (attrsToList xrayClient.dns.hosts); }; }; xray = { enable = true; settingsFile = inputs.config.sops.templates."xray-client.json".path; }; }; sops = { templates."xray-client.json" = { owner = inputs.config.users.users.v2ray.name; group = inputs.config.users.users.v2ray.group; content = let chinaDns = "223.5.5.5"; foreignDns = "8.8.8.8"; in builtins.toJSON { log.loglevel = "info"; dns = { servers = # 先尝试匹配域名列表进行查询,若匹配成功则使用前两个 dns 查询。 # 若匹配域名列表失败,或者匹配成功但是查询到的 IP 不在期望的 IP 列表中,则回落到使用后两个 dns 依次查询。 [ { address = chinaDns; domains = [ "geosite:geolocation-cn" ]; expectIPs = [ "geoip:cn" ]; skipFallback = true; } { address = foreignDns; domains = [ "geosite:geolocation-!cn" ]; expectIPs = [ "geoip:!cn" ]; skipFallback = true; } { address = chinaDns; expectIPs = [ "geoip:cn" ]; } { address = foreignDns; } ]; disableCache = true; queryStrategy = "UseIPv4"; tag = "dns-internal"; }; inbounds = [ { port = 10853; protocol = "dokodemo-door"; settings = { address = "8.8.8.8"; network = "tcp,udp"; port = 53; }; tag = "dns-in"; } { port = 10880; protocol = "dokodemo-door"; settings = { network = "tcp,udp"; followRedirect = true; }; streamSettings.sockopt.tproxy = "tproxy"; sniffing = { enabled = true; destOverride = [ "http" "tls" "quic" ]; routeOnly = true; }; tag = "common-in"; } { port = 10881; protocol = "dokodemo-door"; settings = { network = "tcp,udp"; followRedirect = true; }; streamSettings.sockopt.tproxy = "tproxy"; tag = "xmu-in"; } { port = 10883; protocol = "dokodemo-door"; settings = { network = "tcp,udp"; followRedirect = true; }; streamSettings.sockopt.tproxy = "tproxy"; tag = "proxy-in"; } { port = 10884; protocol = "socks"; tag = "proxy-socks-in"; } { port = 10882; protocol = "socks"; tag = "direct-in"; } ]; outbounds = [ { protocol = "vless"; settings.vnext = [{ address = xrayClient.serverAddress; port = 443; users = [{ id = inputs.config.sops.placeholder."xray-client/uuid"; encryption = "none"; flow = "xtls-rprx-vision-udp443"; }]; }]; streamSettings = { network = "tcp"; security = "reality"; realitySettings = { serverName = xrayClient.serverName; publicKey = "Nl0eVZoDF9d71_3dVsZGJl3UWR9LCv3B14gu7G6vhjk"; fingerprint = "firefox"; }; }; tag = "proxy-vless"; } { protocol = "freedom"; tag = "direct"; } { protocol = "dns"; tag = "dns-out"; } { protocol = "socks"; settings.servers = [{ address = "127.0.0.1"; port = 10069; }]; tag = "xmu-out"; } { protocol = "blackhole"; tag = "block"; } ]; routing = { domainStrategy = "AsIs"; rules = builtins.map (rule: rule // { type = "field"; }) [ { inboundTag = [ "dns-in" ]; outboundTag = "dns-out"; } { inboundTag = [ "dns-internal" ]; ip = [ chinaDns ]; outboundTag = "direct"; } { inboundTag = [ "dns-internal" ]; ip = [ foreignDns ]; outboundTag = "proxy-vless"; } { inboundTag = [ "dns-internal" ]; outboundTag = "block"; } { inboundTag = [ "xmu-in" ]; outboundTag = "xmu-out"; } { inboundTag = [ "direct-in" ]; outboundTag = "direct"; } { inboundTag = [ "proxy-in" "proxy-socks-in" ]; outboundTag = "proxy-vless"; } { inboundTag = [ "common-in" ]; domain = [ "geosite:geolocation-cn" ]; outboundTag = "direct"; } { inboundTag = [ "common-in" ]; domain = [ "geosite:geolocation-!cn" ]; outboundTag = "proxy-vless"; } { inboundTag = [ "common-in" ]; ip = [ "geoip:cn" ]; outboundTag = "direct"; } { inboundTag = [ "common-in" ]; outboundTag = "proxy-vless"; } ]; }; }; }; secrets."xray-client/uuid" = {}; }; systemd.services = { xray = { serviceConfig = { DynamicUser = inputs.lib.mkForce false; User = "v2ray"; Group = "v2ray"; CapabilityBoundingSet = "CAP_NET_ADMIN CAP_NET_BIND_SERVICE"; AmbientCapabilities = "CAP_NET_ADMIN CAP_NET_BIND_SERVICE"; LimitNPROC = 65536; LimitNOFILE = 524288; }; restartTriggers = [ inputs.config.sops.templates."xray-client.json".file ]; }; v2ray-forwarder = { description = "v2ray-forwarder Daemon"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = let ipset = "${inputs.pkgs.ipset}/bin/ipset"; iptables = "${inputs.pkgs.iptables}/bin/iptables"; ip = "${inputs.pkgs.iproute}/bin/ip"; autoPort = "10880"; xmuPort = "10881"; proxyPort = "10883"; in { Type = "simple"; RemainAfterExit = true; ExecStart = inputs.pkgs.writeShellScript "v2ray-forwarder.start" '' ${ipset} create lo_net hash:net ${ipset} add lo_net 0.0.0.0/8 ${ipset} add lo_net 10.0.0.0/8 ${ipset} add lo_net 100.64.0.0/10 ${ipset} add lo_net 127.0.0.0/8 ${ipset} add lo_net 169.254.0.0/16 ${ipset} add lo_net 172.16.0.0/12 ${ipset} add lo_net 192.0.0.0/24 ${ipset} add lo_net 192.88.99.0/24 ${ipset} add lo_net 192.168.0.0/16 ${ipset} add lo_net 59.77.0.143 ${ipset} add lo_net 198.18.0.0/15 ${ipset} add lo_net 198.51.100.0/24 ${ipset} add lo_net 203.0.113.0/24 ${ipset} add lo_net 224.0.0.0/4 ${ipset} add lo_net 240.0.0.0/4 ${ipset} add lo_net 255.255.255.255/32 ${ipset} create xmu_net hash:net ${ipset} create noproxy_net hash:net ${ipset} add noproxy_net 223.5.5.5 ${ipset} create noproxy_src_net hash:net ${ipset} create proxy_net hash:net ${ipset} add proxy_net 8.8.8.8 ${iptables} -t mangle -N v2ray -w ${iptables} -t mangle -A PREROUTING -j v2ray -w ${iptables} -t mangle -A v2ray -m set --match-set noproxy_src_net src -j RETURN -w ${iptables} -t mangle -A v2ray -m set --match-set xmu_net dst -p tcp \ -j TPROXY --on-port ${xmuPort} --tproxy-mark 1/1 -w ${iptables} -t mangle -A v2ray -m set --match-set xmu_net dst -p udp \ -j TPROXY --on-port ${xmuPort} --tproxy-mark 1/1 -w ${iptables} -t mangle -A v2ray -m set --match-set noproxy_net dst -j RETURN -w ${iptables} -t mangle -A v2ray -m set --match-set proxy_net dst -p tcp \ -j TPROXY --on-port ${proxyPort} --tproxy-mark 1/1 -w ${iptables} -t mangle -A v2ray -m set --match-set proxy_net dst -p udp \ -j TPROXY --on-port ${proxyPort} --tproxy-mark 1/1 -w ${iptables} -t mangle -A v2ray -m set --match-set lo_net dst -j RETURN -w ${iptables} -t mangle -A v2ray -p tcp -j TPROXY --on-port ${autoPort} --tproxy-mark 1/1 -w ${iptables} -t mangle -A v2ray -p udp -j TPROXY --on-port ${autoPort} --tproxy-mark 1/1 -w ${iptables} -t mangle -N v2ray_mark -w ${iptables} -t mangle -A OUTPUT -j v2ray_mark -w ${iptables} -t mangle -A v2ray_mark -m owner --uid-owner $(id -u v2ray) -j RETURN -w ${iptables} -t mangle -A v2ray_mark -m set --match-set noproxy_src_net src -j RETURN -w ${iptables} -t mangle -A v2ray_mark -m set --match-set xmu_net dst -p tcp -j MARK --set-mark 1/1 -w ${iptables} -t mangle -A v2ray_mark -m set --match-set xmu_net dst -p udp -j MARK --set-mark 1/1 -w ${iptables} -t mangle -A v2ray_mark -m set --match-set noproxy_net dst -j RETURN -w ${iptables} -t mangle -A v2ray_mark -m set --match-set proxy_net dst -p tcp \ -j MARK --set-mark 1/1 -w ${iptables} -t mangle -A v2ray_mark -m set --match-set proxy_net dst -p udp \ -j MARK --set-mark 1/1 -w ${iptables} -t mangle -A v2ray_mark -m set --match-set lo_net dst -j RETURN -w ${iptables} -t mangle -A v2ray_mark -p tcp -j MARK --set-mark 1/1 -w ${iptables} -t mangle -A v2ray_mark -p udp -j MARK --set-mark 1/1 -w ${ip} rule add fwmark 1/1 table 100 ${ip} route add local 0.0.0.0/0 dev lo table 100 ''; ExecStop = inputs.pkgs.writeShellScript "v2ray-forwarder.stop" '' ${iptables} -t mangle -F v2ray -w ${iptables} -t mangle -D PREROUTING -j v2ray -w ${iptables} -t mangle -X v2ray -w ${iptables} -t mangle -F v2ray_mark -w ${iptables} -t mangle -D OUTPUT -j v2ray_mark -w ${iptables} -t mangle -X v2ray_mark -w ${ip} rule del fwmark 1/1 table 100 ${ip} route del local 0.0.0.0/0 dev lo table 100 ${ipset} destroy lo_net ${ipset} destroy xmu_net ${ipset} destroy noproxy_net ${ipset} destroy noproxy_src_net ${ipset} destroy proxy_net ''; }; }; }; users = { users.v2ray = { isSystemUser = true; group = "v2ray"; }; groups.v2ray = {}; }; environment.etc."resolv.conf".text = "nameserver 127.0.0.1"; } ) ( mkIf xrayServer.enable (let userList = genList (n: n) 30; in { services = { xray = { enable = true; settingsFile = inputs.config.sops.templates."xray-server.json".path; }; nginx.virtualHosts.xray = { serverName = xrayServer.serverName; default = true; listen = [{ addr = "127.0.0.1"; port = 7233; ssl = true; }]; useACMEHost = xrayServer.serverName; onlySSL = true; locations."/".return = "400"; }; }; sops = { templates."xray-server.json" = { owner = inputs.config.users.users.v2ray.name; group = inputs.config.users.users.v2ray.group; content = builtins.toJSON { log.loglevel = "warning"; inbounds = [ { port = 4726; listen = "127.0.0.1"; protocol = "vless"; settings = { clients = map (n: { id = inputs.config.sops.placeholder."xray-server/clients/user${toString n}"; flow = "xtls-rprx-vision"; email = "${toString n}@xray.chn.moe"; }) userList; decryption = "none"; fallbacks = [{ dest = "127.0.0.1:7233"; }]; }; streamSettings = { network = "tcp"; security = "reality"; realitySettings = { dest = "127.0.0.1:7233"; serverNames = [ xrayServer.serverName ]; privateKey = inputs.config.sops.placeholder."xray-server/private-key"; minClientVer = "1.8.0"; shortIds = [ "" ]; }; }; sniffing = { enabled = true; destOverride = [ "http" "tls" "quic" ]; routeOnly = true; }; tag = "in"; } { port = 4638; listen = "127.0.0.1"; protocol = "vless"; settings = { clients = [{ id = "be01f0a0-9976-42f5-b9ab-866eba6ed393"; }]; decryption = "none"; }; streamSettings.network = "tcp"; sniffing = { enabled = true; destOverride = [ "http" "tls" "quic" ]; }; tag = "in-localdns"; } { listen = "127.0.0.1"; port = 6149; protocol = "dokodemo-door"; settings.address = "127.0.0.1"; tag = "api"; } ]; outbounds = [ { protocol = "freedom"; tag = "freedom"; } { protocol = "vless"; settings.vnext = [{ address = "127.0.0.1"; port = 4638; users = [{ id = "be01f0a0-9976-42f5-b9ab-866eba6ed393"; encryption = "none"; }]; }]; streamSettings.network = "tcp"; tag = "loopback-localdns"; } ]; routing = { domainStrategy = "AsIs"; rules = builtins.map (rule: rule // { type = "field"; }) [ { inboundTag = [ "in" ]; domain = [ "domain:openai.com" ]; outboundTag = "loopback-localdns"; } { inboundTag = [ "in" ]; outboundTag = "freedom"; } { inboundTag = [ "in-localdns" ]; outboundTag = "freedom"; } { inboundTag = [ "api" ]; outboundTag = "api"; } ]; }; stats = {}; api = { tag = "api"; services = [ "StatsService" ]; }; policy = { levels."0" = { statsUserUplink = true; statsUserDownlink = true; }; system = { statsInboundUplink = true; statsInboundDownlink = true; statsOutboundUplink = true; statsOutboundDownlink = true; }; }; }; }; secrets = listToAttrs (map (n: { name = "xray-server/clients/user${toString n}"; value = {}; }) userList) // (listToAttrs (map (name: { name = "xray-server/telegram/${name}"; value = { owner = inputs.config.users.users.v2ray.name; group = inputs.config.users.users.v2ray.group; }; }) [ "token" "chat" ])) // { "xray-server/private-key" = {}; }; }; systemd = { services = { xray = { serviceConfig = { DynamicUser = inputs.lib.mkForce false; User = "v2ray"; Group = "v2ray"; CapabilityBoundingSet = "CAP_NET_ADMIN CAP_NET_BIND_SERVICE"; AmbientCapabilities = "CAP_NET_ADMIN CAP_NET_BIND_SERVICE"; LimitNPROC = 65536; LimitNOFILE = 524288; }; restartTriggers = [ inputs.config.sops.templates."xray-server.json".file ]; }; xray-stat = { script = let xray = "${inputs.pkgs.xray}/bin/xray"; awk = "${inputs.pkgs.gawk}/bin/awk"; curl = "${inputs.pkgs.curl}/bin/curl"; jq = "${inputs.pkgs.jq}/bin/jq"; sed = "${inputs.pkgs.gnused}/bin/sed"; cat = "${inputs.pkgs.coreutils}/bin/cat"; token = inputs.config.sops.secrets."xray-server/telegram/token".path; chat = inputs.config.sops.secrets."xray-server/telegram/chat".path; in '' message='xray:\n' for i in {0..${toString ((length userList) - 1)}} do upload_bytes=$(${xray} api stats --server=127.0.0.1:6149 \ -name "user>>>''${i}@xray.chn.moe>>>traffic>>>uplink" | ${jq} '.stat.value' | ${sed} 's/"//g') [ -z "$upload_bytes" ] && upload_bytes=0 download_bytes=$(${xray} api stats --server=127.0.0.1:6149 \ -name "user>>>''${i}@xray.chn.moe>>>traffic>>>downlink" | ${jq} '.stat.value' | ${sed} 's/"//g') [ -z "$download_bytes" ] && download_bytes=0 traffic_gb=$(echo | ${awk} "{printf \"%.3f\",(''${upload_bytes}+''${download_bytes})/1073741824}") message="$message$i"'\t'"''${traffic_gb}"'G\n' done ${curl} -X POST -H 'Content-Type: application/json' \ -d "{\"chat_id\": \"$(${cat} ${chat})\", \"text\": \"$message\"}" \ https://api.telegram.org/bot$(${cat} ${token})/sendMessage ''; serviceConfig = { Type = "oneshot"; User = "v2ray"; Group = "v2ray"; }; }; }; timers.xray-stat = { wantedBy = [ "timers.target" ]; timerConfig = { OnCalendar = "*-*-* 0:00:00"; Unit = "xray-stat.service"; }; }; }; users = { users.v2ray = { isSystemUser = true; group = "v2ray"; }; groups.v2ray = {}; }; nixos.services = { acme = { enable = true; certs = [ xrayServer.serverName ]; }; nginx.transparentProxy.map."${xrayServer.serverName}" = 4726; }; security.acme.certs.${xrayServer.serverName}.group = inputs.config.users.users.nginx.group; } )) ]; }