-
-
Notifications
You must be signed in to change notification settings - Fork 161
Closed
Description
This line here:
| merge = loc: defs: (import "${config.nixpkgs}/nixos/lib/eval-config.nix" { |
Causes a needless recopying of nixpkgs to the store, even if it is already in the store. This is due to nix's behavior when using a path in interpolation. It automatically imports any interpolated paths to the /nix/store (strange I know, but that's what it does).
it's possible simply changing to:
import (config.nixpkgs + "/nixos/lib/eval-config.nix") would work, but I'll test a patch to make sure before submitting.
jonringer
Metadata
Metadata
Assignees
Labels
No labels