mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
13 lines
251 B
Nix
13 lines
251 B
Nix
{ pkgs, lib, desktop, ... }: {
|
|
environment.systemPackages = lib.optionals (desktop != null) [
|
|
pkgs.netbird-ui
|
|
];
|
|
|
|
services.netbird.enable = true;
|
|
|
|
networking = {
|
|
firewall = {
|
|
# trustedInterfaces = [ "tailscale0" ];
|
|
};
|
|
};
|
|
}
|