bubbleupnp module for rock5b

This commit is contained in:
Andrea Ciceri 2023-06-19 22:17:45 +02:00
parent 4daf35633d
commit 5e9020533b
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
2 changed files with 12 additions and 0 deletions

View file

@ -15,6 +15,7 @@
"minidlna"
"transmission"
"hercules-ci"
"bubbleupnp"
]
++ [
./disko.nix

View file

@ -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];
}