Merge pull request #118742 from FRidh/tailscale

services.tailscale: add openresolv to path
This commit is contained in:
Sandro 2021-04-07 23:31:10 +02:00 committed by GitHub
commit 318115515b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,7 @@ in {
systemd.packages = [ cfg.package ];
systemd.services.tailscaled = {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.openresolv ];
serviceConfig.Environment = "PORT=${toString cfg.port}";
};
};