Fix zt-tcp-relay
All checks were successful
checks / checks-impure (pull_request) Successful in 2m12s
checks / checks (pull_request) Successful in 4m17s

This commit is contained in:
Luis Hebendanz 2024-05-02 16:59:17 +02:00
parent 3a9a7eedf9
commit 570f04ecdc
2 changed files with 1 additions and 3 deletions

View File

@ -20,7 +20,7 @@
after = [ "network.target" ]; after = [ "network.target" ];
serviceConfig = { serviceConfig = {
ExecStart = "${ ExecStart = "${
pkgs.callPackage ../pkgs/zt-tcp-relay { } pkgs.callPackage ../../pkgs/zt-tcp-relay { }
}/bin/zt-tcp-relay --listen [::]:${builtins.toString config.clan.zt-tcp-relay.port}"; }/bin/zt-tcp-relay --listen [::]:${builtins.toString config.clan.zt-tcp-relay.port}";
Restart = "always"; Restart = "always";
RestartSec = "5"; RestartSec = "5";

View File

@ -8,6 +8,4 @@
jsonschema = import ./jsonschema { inherit lib; }; jsonschema = import ./jsonschema { inherit lib; };
modules = import ./description.nix { inherit clan-core; }; modules = import ./description.nix { inherit clan-core; };
buildClan = import ./build-clan { inherit clan-core lib nixpkgs; }; buildClan = import ./build-clan { inherit clan-core lib nixpkgs; };
} }