258a155c00
Wow, I didn't know I can do this...
24 lines
694 B
Nix
24 lines
694 B
Nix
{ inputs, pkgs, config, ... }: {
|
|
systemd.services.v2raya = {
|
|
enable = true;
|
|
description = "v2rayA gui client";
|
|
after = [ "network.target" ];
|
|
serviceConfig = {
|
|
Restart = "always";
|
|
ExecStart = "${pkgs.v2raya}/bin/v2rayA";
|
|
};
|
|
path = with pkgs; [ iptables bash iproute2 ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
environment = {
|
|
V2RAYA_LOG_FILE = "/var/log/v2raya/v2raya.log";
|
|
V2RAY_LOCATION_ASSET = "/etc/v2raya";
|
|
XRAY_LOCATION_ASSET = "/etc/v2raya";
|
|
};
|
|
};
|
|
|
|
environment.etc = {
|
|
"v2raya/ru_geoip.dat".source = "${inputs.russia-blocked-geoip}/geoip.dat";
|
|
"v2raya/bolt.db".source = config.sops.secrets.vpn_bolt.path;
|
|
};
|
|
}
|