pdm: only default to given python3 in overrideAll.

This commit is contained in:
phaer 2024-01-16 10:51:46 +01:00 committed by DavHau
parent 5fd5e3ea18
commit 3fc4a2ad97

View File

@ -82,8 +82,8 @@ in {
overrideAll = {
imports = [commonModule];
deps = {nixpkgs, ...}: {
python3 = config.deps.python3;
python = config.deps.python3;
python3 = lib.mkDefault config.deps.python3;
python = lib.mkDefault config.deps.python3;
};
sourceSelector = lib.mkOptionDefault config.pdm.sourceSelector;
};