This commit is contained in:
2026-05-17 17:37:35 -03:00
parent 8caa857f9e
commit 62326a8185
7 changed files with 59 additions and 80 deletions
-24
View File
@@ -1,24 +0,0 @@
{
config,
lib,
...
}:
{
options.mods.netbird = {
enable = lib.mkEnableOption "netbird";
};
config = lib.mkIf config.mods.netbird.enable {
services.netbird.clients.wt0 = {
login = {
enable = false;
setupKeyFile = "/path/to/your/setup-key";
};
port = 51821;
ui.enable = false;
openFirewall = true;
openInternalFirewall = true;
};
services.resolved.enable = true;
};
}
-1
View File
@@ -1,7 +1,6 @@
{ lib, ... }:
{
imports = [
./netbird/netbird.nix
./tailscale/tailscale.nix
];