1{ system ? builtins.currentSystem
2, config ? { }
3, pkgs ? import ../../.. { inherit system config; }
4}:
5
6{
7 "basic" = import ./common.nix {
8 name = "basic";
9 };
10
11 "v2ray-plugin" = import ./common.nix {
12 name = "v2ray-plugin";
13 plugin = "${pkgs.shadowsocks-v2ray-plugin}/bin/v2ray-plugin";
14 pluginOpts = "host=nixos.org";
15 };
16}