Skip to content

Commit

Permalink
pdm: only default to given python3 in overrideAll.
Browse files Browse the repository at this point in the history
  • Loading branch information
phaer authored and DavHau committed Jan 17, 2024
1 parent 5fd5e3e commit 3fc4a2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/dream2nix/WIP-python-pdm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 3fc4a2a

Please sign in to comment.