feat : Add of secret for roundcube and vaultwarden

This commit is contained in:
Wateir 2025-12-24 17:18:24 +01:00
parent a59e409a49
commit 2f5c8be389
18 changed files with 116 additions and 51 deletions

View file

@ -1,8 +1,7 @@
{ config, lib, pkgs, ... }:
lib.mkIf config.module.tailscale.enable {
{
services.tailscale = {
enable = true;
extraDaemonFlags = [
"--no-logs-no-support"
];
@ -13,7 +12,7 @@ lib.mkIf config.module.tailscale.enable {
useRoutingFeatures = "server";
};
networking.firewall = {
networking.firewall = lib.mkIf config.services.tailscale.enable {
allowedTCPPorts = [ 443 ];
allowedUDPPorts = [ 41641 3478 ];
};