nixos-flake/nebula.nix
2024-08-20 20:26:37 -04:00

28 lines
652 B
Nix

{ lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ nebula ];
services.nebula.networks.home = {
enable = true;
cert = "/var/lib/nebula/harrowhark.crt";
key = "/var/lib/nebula/harrowhark.key";
ca = "/var/lib/nebula/ca.crt";
lighthouses = [ "172.16.0.1" ];
staticHostMap."172.16.0.1" = [ "5.78.100.40:4242" ];
firewall.inbound = [{
host = "any";
port = "any";
proto = "any";
}];
firewall.outbound = [{
host = "any";
port = "any";
proto = "any";
}];
};
networking.hosts."172.16.0.2" =
[ "torrent.home" "sonarr.home" "radarr.home" "prowlarr.home" ];
}