diff --git a/hosts/rock5b/default.nix b/hosts/rock5b/default.nix index 8b3d2db..272c17e 100644 --- a/hosts/rock5b/default.nix +++ b/hosts/rock5b/default.nix @@ -15,6 +15,7 @@ "minidlna" "transmission" "hercules-ci" + "bubbleupnp" ] ++ [ ./disko.nix diff --git a/modules/bubbleupnp/default.nix b/modules/bubbleupnp/default.nix new file mode 100644 index 0000000..64c304f --- /dev/null +++ b/modules/bubbleupnp/default.nix @@ -0,0 +1,11 @@ +{ + virtualisation.oci-containers.containers = { + bubbleupnpserver = { + image = "bubblesoftapps/bubbleupnpserver"; + ports = ["58050:58050"]; + extraOptions = ["--network=host" "-device /dev/dri:/dev/dri"]; + }; + }; + + networking.firewall.allowedTCPPorts = [58050]; +}