mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 12:45:27 +03:00
18 lines
348 B
Nix
18 lines
348 B
Nix
![]() |
{
|
||
|
system ? builtins.currentSystem,
|
||
|
config ? { },
|
||
|
pkgs ? import ../../.. { inherit system config; },
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
"basic" = import ./common.nix {
|
||
|
name = "basic";
|
||
|
};
|
||
|
|
||
|
"v2ray-plugin" = import ./common.nix {
|
||
|
name = "v2ray-plugin";
|
||
|
plugin = "${pkgs.shadowsocks-v2ray-plugin}/bin/v2ray-plugin";
|
||
|
pluginOpts = "host=nixos.org";
|
||
|
};
|
||
|
}
|