feat(m3-hermes): add Netbird mesh VPN + enable API server for Hermes Desktop

This commit is contained in:
2026-05-10 11:46:21 +02:00
parent 1544764f37
commit c6df5d3836
5 changed files with 28 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{pkgs, ...}: {
services.netbird.enable = true;
systemd.services.netbird = {
environment = {
NB_DISABLE_SSH_CONFIG = "true";
};
path = [
pkgs.shadow
pkgs.util-linux
];
};
networking.firewall.checkReversePath = "loose";
}