nixos-config/machines/chungus/zerotier-controller.nix

33 lines
1.2 KiB
Nix
Raw Normal View History

2024-06-26 00:39:52 +02:00
{ pkgs, lib, config, clanLib, ... }:
let
zerotierSetup = ''
export NWID=${config.clan.core.facts.services.zerotier.public."zerotier-network-id".value}
export TOKEN=$(cat /var/lib/zerotier-one/authtoken.secret)
'';
zerotierCommand = name: command: pkgs.writers.writeBashBin name ''
2024-06-26 01:09:51 +02:00
set -e
set -o pipefail
export PATH=${pkgs.curl}/bin:${pkgs.gojq}/bin:${pkgs.zerotierone}/bin:$PATH
${zerotierSetup}
${command}
2024-06-26 00:39:52 +02:00
'';
in
{
environment.systemPackages = [
(zerotierCommand "zerotier-script-members" ''
curl "http://localhost:9993/controller/network/''${NWID}/member" -H "X-ZT1-AUTH: ''${TOKEN}" | gojq
'')
2024-06-26 01:09:51 +02:00
(zerotierCommand "zerotier-script-delete-member" ''
if [ "$#" -ne 1 ]; then
echo "Memid is missing."
exit 1
fi
export MEMID=$1
echo "deauthorized $MEMID"
curl -X POST "http://localhost:9993/controller/network/''${NWID}/member/''${MEMID}" -H "X-ZT1-AUTH: ''${TOKEN}" -d '{"authorized": false}' | gojq
echo "delete $MEMID"
curl -X DELETE "http://localhost:9993/controller/network/''${NWID}/member/''${MEMID}" -H "X-ZT1-AUTH: ''${TOKEN}" | gojq
2024-06-26 00:39:52 +02:00
'')
];
}