[app-launcher-server] process detection fixes

This commit is contained in:
2025-10-14 18:09:29 -07:00
parent d26007aa61
commit 6f00c72540
2 changed files with 79 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
{ pkgs }:
let
python = pkgs.python3.withPackages (ps: with ps; [
psutil
]);
in
pkgs.writeShellScriptBin "app-launcher-server" ''
exec ${pkgs.python3}/bin/python3 ${./app-launcher-server.py} "$@"
exec ${python}/bin/python3 ${./app-launcher-server.py} "$@"
''