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

16
module/newt.nix Normal file
View file

@ -0,0 +1,16 @@
{config,lib, ... }:
{
services.newt = {
enable = true;
environmentFile = "/etc/newt.env";
settings = {
endpoint = "https://pangolin.wateir.fr";
};
};
networking.firewall = {
allowedTCPPorts = [ 80 443 ];
allowedUDPPorts = [ 51820 21820 ];
};
}