This commit is contained in:
2025-10-03 09:37:53 +00:00
parent 7eaf15441e
commit 5b65b1be62
12 changed files with 77 additions and 80 deletions

View File

@@ -1,14 +1,8 @@
{
pkgs,
lib,
...
}: {
services.tailscale =
{
enable = true;
}
// lib.optionalAttrs pkgs.stdenv.isLinux {
openFirewall = true;
useRoutingFeatures = "server";
};
{lib, pkgs, ...}: {
services.tailscale = {
enable = true;
} // lib.optionalAttrs pkgs.stdenv.isLinux {
openFirewall = true;
useRoutingFeatures = "server";
};
}