2020-03-08 06:47:50 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2022-05-06 01:15:54 +00:00
|
|
|
let
|
|
|
|
cfg = config.services.tailscale;
|
2022-06-21 20:23:28 +00:00
|
|
|
isNetworkd = config.networking.useNetworkd;
|
2020-03-08 06:47:50 +00:00
|
|
|
in {
|
2022-05-06 00:09:27 +00:00
|
|
|
meta.maintainers = with maintainers; [ danderson mbaillie twitchyliquid64 ];
|
2020-03-08 06:47:50 +00:00
|
|
|
|
|
|
|
options.services.tailscale = {
|
2022-08-28 19:18:44 +00:00
|
|
|
enable = mkEnableOption (lib.mdDoc "Tailscale client daemon");
|
2020-03-08 06:47:50 +00:00
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 41641;
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc "The port to listen on for tunnel traffic (0=autoselect).";
|
2020-03-08 06:47:50 +00:00
|
|
|
};
|
2020-11-24 16:47:28 +00:00
|
|
|
|
2021-06-04 20:18:59 +00:00
|
|
|
interfaceName = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "tailscale0";
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc ''The interface name for tunnel traffic. Use "userspace-networking" (beta) to not use TUN.'';
|
2021-06-04 20:18:59 +00:00
|
|
|
};
|
|
|
|
|
2022-04-17 09:16:25 +00:00
|
|
|
permitCertUid = mkOption {
|
|
|
|
type = types.nullOr types.nonEmptyStr;
|
|
|
|
default = null;
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc "Username or user ID of the user allowed to to fetch Tailscale TLS certificates for the node.";
|
2022-04-17 09:16:25 +00:00
|
|
|
};
|
|
|
|
|
2020-11-24 16:47:28 +00:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.tailscale;
|
2021-10-03 16:06:03 +00:00
|
|
|
defaultText = literalExpression "pkgs.tailscale";
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc "The package to use for tailscale";
|
2020-11-24 16:47:28 +00:00
|
|
|
};
|
2022-11-14 02:23:43 +00:00
|
|
|
|
|
|
|
useRoutingFeatures = mkOption {
|
|
|
|
type = types.enum [ "none" "client" "server" "both" ];
|
|
|
|
default = "none";
|
|
|
|
example = "server";
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
Enables settings required for Tailscale's routing features like subnet routers and exit nodes.
|
|
|
|
|
|
|
|
To use these these features, you will still need to call `sudo tailscale up` with the relevant flags like `--advertise-exit-node` and `--exit-node`.
|
|
|
|
|
|
|
|
When set to `client` or `both`, reverse path filtering will be set to loose instead of strict.
|
|
|
|
When set to `server` or `both`, IP forwarding will be enabled.
|
|
|
|
'';
|
|
|
|
};
|
2020-03-08 06:47:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2020-11-24 16:47:28 +00:00
|
|
|
environment.systemPackages = [ cfg.package ]; # for the CLI
|
|
|
|
systemd.packages = [ cfg.package ];
|
2020-10-31 01:11:30 +00:00
|
|
|
systemd.services.tailscaled = {
|
2020-03-08 06:47:50 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2022-05-06 00:09:27 +00:00
|
|
|
path = [
|
2022-03-29 19:24:30 +00:00
|
|
|
config.networking.resolvconf.package # for configuring DNS in some configs
|
2022-05-06 00:09:27 +00:00
|
|
|
pkgs.procps # for collecting running services (opt-in feature)
|
|
|
|
pkgs.glibc # for `getent` to look up user shells
|
|
|
|
];
|
2021-06-04 20:18:59 +00:00
|
|
|
serviceConfig.Environment = [
|
|
|
|
"PORT=${toString cfg.port}"
|
|
|
|
''"FLAGS=--tun ${lib.escapeShellArg cfg.interfaceName}"''
|
2022-04-17 09:16:25 +00:00
|
|
|
] ++ (lib.optionals (cfg.permitCertUid != null) [
|
|
|
|
"TS_PERMIT_CERT_UID=${cfg.permitCertUid}"
|
|
|
|
]);
|
2022-04-25 06:31:35 +00:00
|
|
|
# Restart tailscaled with a single `systemctl restart` at the
|
|
|
|
# end of activation, rather than a `stop` followed by a later
|
|
|
|
# `start`. Activation over Tailscale can hang for tens of
|
|
|
|
# seconds in the stop+start setup, if the activation script has
|
|
|
|
# a significant delay between the stop and start phases
|
|
|
|
# (e.g. script blocked on another unit with a slow shutdown).
|
|
|
|
#
|
|
|
|
# Tailscale is aware of the correctness tradeoff involved, and
|
|
|
|
# already makes its upstream systemd unit robust against unit
|
|
|
|
# version mismatches on restart for compatibility with other
|
|
|
|
# linux distros.
|
|
|
|
stopIfChanged = false;
|
2020-03-08 06:47:50 +00:00
|
|
|
};
|
2022-06-21 20:23:28 +00:00
|
|
|
|
2022-11-14 02:23:43 +00:00
|
|
|
boot.kernel.sysctl = mkIf (cfg.useRoutingFeatures == "server" || cfg.useRoutingFeatures == "both") {
|
|
|
|
"net.ipv4.conf.all.forwarding" = mkDefault true;
|
|
|
|
"net.ipv6.conf.all.forwarding" = mkDefault true;
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.firewall.checkReversePath = mkIf (cfg.useRoutingFeatures == "client" || cfg.useRoutingFeatures == "both") "loose";
|
|
|
|
|
2022-06-21 20:23:28 +00:00
|
|
|
networking.dhcpcd.denyInterfaces = [ cfg.interfaceName ];
|
|
|
|
|
|
|
|
systemd.network.networks."50-tailscale" = mkIf isNetworkd {
|
|
|
|
matchConfig = {
|
|
|
|
Name = cfg.interfaceName;
|
|
|
|
};
|
|
|
|
linkConfig = {
|
|
|
|
Unmanaged = true;
|
|
|
|
ActivationPolicy = "manual";
|
|
|
|
};
|
|
|
|
};
|
2020-03-08 06:47:50 +00:00
|
|
|
};
|
|
|
|
}
|