nix-config/nixos/_mixins/services/netbird.nix

14 lines
251 B
Nix
Raw Normal View History

{ pkgs, lib, desktop, ... }: {
environment.systemPackages = lib.optionals (desktop != null) [
pkgs.netbird-ui
];
services.netbird.enable = true;
networking = {
firewall = {
# trustedInterfaces = [ "tailscale0" ];
};
};
}