2022-08-25 12:21:35 -06:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib; {
|
|
|
|
options = {
|
|
|
|
zerotier = {
|
|
|
|
enable = mkOption {
|
|
|
|
description = "Enable ZeroTier";
|
|
|
|
default = false;
|
|
|
|
example = true;
|
|
|
|
type = lib.types.bool;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
tailscale = {
|
|
|
|
enable = mkOption {
|
|
|
|
description = "Enable TailScale";
|
|
|
|
default = true;
|
|
|
|
example = true;
|
|
|
|
type = lib.types.bool;
|
|
|
|
};
|
2022-09-10 09:34:50 -06:00
|
|
|
sshOnly = mkOption {
|
|
|
|
description =
|
|
|
|
"Enable TailScale with only ssh traffic to the tailnet allowed";
|
|
|
|
default = false;
|
|
|
|
example = true;
|
|
|
|
type = lib.types.bool;
|
|
|
|
};
|
2022-08-25 12:21:35 -06:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkMerge [
|
|
|
|
(mkIf config.tailscale.enable {
|
2023-01-11 05:56:20 -07:00
|
|
|
services = { tailscale = { enable = mkDefault true; }; };
|
|
|
|
networking.firewall.checkReversePath = mkDefault "loose";
|
2022-08-25 12:21:35 -06:00
|
|
|
})
|
2022-09-10 09:34:50 -06:00
|
|
|
(mkIf (config.tailscale.enable && config.tailscale.sshOnly) {
|
|
|
|
sops.secrets = {
|
|
|
|
ts_sshonly = {
|
|
|
|
sopsFile = config.xin-secrets.net-overlays;
|
|
|
|
owner = "root";
|
|
|
|
mode = "400";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
systemd.services = {
|
|
|
|
"tailscale-ssh-init" = {
|
|
|
|
wantedBy = [ "tailscaled.service" ];
|
|
|
|
after = [ "tailscaled.service" ];
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart =
|
|
|
|
"${pkgs.tailscale}/bin/tailscale up --auth-key file://${config.sops.secrets.ts_sshonly.path}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
})
|
2022-08-25 12:21:35 -06:00
|
|
|
(mkIf config.zerotier.enable {
|
|
|
|
environment.systemPackages = with pkgs; [ zerotierone ];
|
|
|
|
services = {
|
|
|
|
zerotierone = {
|
|
|
|
enable = true;
|
|
|
|
joinNetworks = [ "db64858fedd3b256" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
networking.firewall.checkReversePath = "loose";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
}
|