summaryrefslogtreecommitdiffstats
path: root/lass/2configs/weron/client.nix
blob: 55bc8a0da47e244b2939a7cc8023ccf5de39016e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, lib, pkgs, ... }:
{
  systemd.services.weron = {
    wantedBy = [ "multi-user.target" ];
    environment = {
      WERON_RADDR = "ws://lassul.us:23420/";
    };
    serviceConfig = {
      ExecStart = pkgs.writers.writeDash "weron" ''
        ${pkgs.weron}/bin/weron vpn ip \
          --community krebs \
          --password aidsballs \
          --key aidsballs \
          --ips 10.249.1.0/24 \
          --verbose 7 \
          --dev weron
      '';
    };
  };
}