This commit is contained in:
Christoph Schmatzler
2025-08-14 09:09:56 +02:00
parent c1fcf33afa
commit 2926d7412b
7 changed files with 377 additions and 364 deletions

View File

@@ -27,4 +27,4 @@
};
};
};
}
}

View File

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