I installed Orca Slicer on NixOs 25.05. The Program starts up, but i can’t get the Bambu Network Plugin working.
Has someone running this configuration?
I installed Orca Slicer on NixOs 25.05. The Program starts up, but i can’t get the Bambu Network Plugin working.
Has someone running this configuration?
I just ran into the same problem. I dug around and found related issue and PR to nixpkgs. I added the following to my configuration.nix
(based on the PR) and it solved the problem:
networking.firewall = {
extraCommands = ''
iptables -I INPUT -m pkttype --pkt-type multicast -j ACCEPT
iptables -A INPUT -m pkttype --pkt-type multicast -j ACCEPT
iptables -I INPUT -p udp -m udp --match multiport --dports 1990,2021 -j ACCEPT
'';
};
Thx alot. This works for me!