diff options
author | lassulus <git@lassul.us> | 2023-05-29 20:03:26 +0200 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-05-29 20:03:26 +0200 |
commit | 7c3b3400b71678617ac042b522c26e747b8312c2 (patch) | |
tree | 587958b742590bf15f8d226789d24b1267a1882b /lass/2configs/weron/client.nix | |
parent | e629da17d5e22444549e4ed3c07e64158111214d (diff) |
l pipewire: skip configuring wireplumber, add bluetooth config
Diffstat (limited to 'lass/2configs/weron/client.nix')
-rw-r--r-- | lass/2configs/weron/client.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lass/2configs/weron/client.nix b/lass/2configs/weron/client.nix new file mode 100644 index 000000000..55bc8a0da --- /dev/null +++ b/lass/2configs/weron/client.nix @@ -0,0 +1,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 + ''; + }; + }; +} |