zt-tcp-relay: add clan module + test
This commit is contained in:
@@ -10,5 +10,6 @@
|
||||
xfce = ./xfce.nix;
|
||||
borgbackup = ./borgbackup.nix;
|
||||
syncthing = ./syncthing.nix;
|
||||
zt-tcp-relay = ./zt-tcp-relay.nix;
|
||||
};
|
||||
}
|
||||
|
||||
23
clanModules/zt-tcp-relay.nix
Normal file
23
clanModules/zt-tcp-relay.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ pkgs, lib, config, ... }: {
|
||||
options.clan.zt-tcp-relay = {
|
||||
port = lib.mkOption {
|
||||
type = lib.types.port;
|
||||
default = 4443;
|
||||
description = "Port to listen on";
|
||||
};
|
||||
};
|
||||
config = {
|
||||
networking.firewall.allowedTCPPorts = [ config.clan.zt-tcp-relay.port ];
|
||||
|
||||
systemd.services.zt-tcp-relay = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.callPackage ../pkgs/zt-tcp-relay {}}/bin/zt-tcp-relay --listen [::]:${builtins.toString config.clan.zt-tcp-relay.port}";
|
||||
Restart = "always";
|
||||
RestartSec = "5";
|
||||
dynamicUsers = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user