2020-03-08 06:47:50 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let cfg = config.services.tailscale;
|
|
|
|
in {
|
|
|
|
meta.maintainers = with maintainers; [ danderson mbaillie ];
|
|
|
|
|
|
|
|
options.services.tailscale = {
|
|
|
|
enable = mkEnableOption "Tailscale client daemon";
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 41641;
|
|
|
|
description = "The port to listen on for tunnel traffic (0=autoselect).";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2020-08-21 05:07:41 +01:00
|
|
|
environment.systemPackages = [ pkgs.tailscale ]; # for the CLI
|
2020-10-31 01:11:30 +00:00
|
|
|
systemd.packages = [ pkgs.tailscale ];
|
|
|
|
systemd.services.tailscaled = {
|
2020-03-08 06:47:50 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2020-10-31 01:11:30 +00:00
|
|
|
serviceConfig.Environment = "PORT=${toString cfg.port}";
|
2020-03-08 06:47:50 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|