Fix decky extraPythonPackages module option

This commit is contained in:
Faupi
2024-10-01 02:33:44 +02:00
parent 3390ff2632
commit 3d626c5afb

View File

@@ -9,7 +9,7 @@ let
cfg = config.jovian.decky-loader;
package = cfg.package.overridePythonAttrs(old: {
dependencies = old.dependencies ++ (cfg.extraPythonPackages old.python.pkgs);
dependencies = old.dependencies ++ (cfg.extraPythonPackages old.passthru.python.pkgs);
});
in
{