lol

nixos/websockify: use python3 websockify

lelgenio 4f802070 9dbe5687

+1 -1
+1 -1
nixos/modules/services/networking/websockify.nix
··· 38 38 description = "Service to forward websocket connections to TCP connections (from port:to port %I)"; 39 39 script = '' 40 40 IFS=':' read -a array <<< "$1" 41 - ${pkgs.pythonPackages.websockify}/bin/websockify --ssl-only \ 41 + ${pkgs.python3Packages.websockify}/bin/websockify --ssl-only \ 42 42 --cert=${cfg.sslCert} --key=${cfg.sslKey} 0.0.0.0:''${array[0]} 0.0.0.0:''${array[1]} 43 43 ''; 44 44 scriptArgs = "%i";