nixos/roles/tailscale.nix

13 lines
238 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
2024-12-18 18:19:37 -06:00
{
services.tailscale.enable = true;
# See https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-2541381489
systemd.services.tailscaled.after = [ "systemd-networkd-wait-online.service" ];
}