12 lines
238 B
Nix
12 lines
238 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
services.tailscale.enable = true;
|
|
# See https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-2541381489
|
|
systemd.services.tailscaled.after = [ "systemd-networkd-wait-online.service" ];
|
|
}
|