Add of pangolin client, fix roundcube and vaultwarden, refractor some bit

This commit is contained in:
Wateir 2025-12-21 13:11:04 +01:00
parent d4d7073344
commit 271115fc3a
7 changed files with 93 additions and 53 deletions

20
module/tailscale.nix Normal file
View file

@ -0,0 +1,20 @@
{config,lib, ... }:
{
services.tailscale = {
enable = true;
extraDaemonFlags = [
"--no-logs-no-support"
];
extraSetFlags = [
"--ssh=false"
];
useRoutingFeatures = "server"; # or "client" / "both"
};
networking.firewall = {
allowedTCPPorts = [ 443 ];
allowedUDPPorts = [ 41641 3478 ];
};
}