diff options
author | Alan Pearce | 2024-05-12 15:53:03 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-18 12:17:12 +0200 |
commit | 312a4ce589f85d955a19b9d86f0c89b930147072 (patch) | |
tree | 0c2b383461dd4fe81f1161dd8b5bf5df4af005a1 /lib | |
parent | cb6c1b4d42c5170ee0d4ac61a75c674777c86b53 (diff) | |
download | nixfiles-312a4ce589f85d955a19b9d86f0c89b930147072.tar.lz nixfiles-312a4ce589f85d955a19b9d86f0c89b930147072.tar.zst nixfiles-312a4ce589f85d955a19b9d86f0c89b930147072.zip |
Revert "pin channels using nix.nixPath rather than using ~/.nix-defexpr"
This reverts commit 4e5e1bca6c94b922e906549683e1780a1d49d02f.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/default.nix b/lib/default.nix index 023566e5..93f64059 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -10,7 +10,7 @@ rec { if s.type == "local" then - toString (lib.path.append ../. s.outPath) + lib.path.append ../. s.outPath else toString s.outPath ; |