nixfleet/modules/bubbleupnp/default.nix
Andrea Ciceri a394b9cefd
All checks were successful
/ test (push) Successful in 32s
Reformat everything
2024-09-20 11:37:17 +02:00

14 lines
315 B
Nix

{
virtualisation.oci-containers.containers = {
bubbleupnpserver = {
image = "bubblesoftapps/bubbleupnpserver";
ports = [ "58050:58050" ];
extraOptions = [
"--network=host"
"-device /dev/dri:/dev/dri"
];
};
};
networking.firewall.allowedTCPPorts = [ 58050 ];
}