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