summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-01-05 13:54:34 +0100
committerRobert Hensing <robert@roberthensing.nl>2022-01-22 16:42:07 +0100
commit813f9da8ab69f106055dd4a8fead7bc0a21a251b (patch)
treec7e28b8ffd5dac8332fea911308769cf02857699 /flake.nix
parent3562adbcec7f87c260c6aaa0a52b31269450bd4e (diff)
pkgs.path: Avoid copying when used via flake
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 29dffa9fa4e4..c2306768d6fe 100644
--- a/flake.nix
+++ b/flake.nix
@@ -62,7 +62,7 @@
}).nixos.manual.x86_64-linux;
};
- legacyPackages = forAllSystems (system: import ./. { inherit system; });
+ legacyPackages = forAllSystems (system: import ./. { inherit system; config.path = self.outPath; });
nixosModules = {
notDetected = import ./nixos/modules/installer/scan/not-detected.nix;