diff options
author | Alan Pearce | 2024-05-06 13:07:15 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-18 12:17:12 +0200 |
commit | a46864566b13b61bddd9b0ee15457efa288ec3de (patch) | |
tree | e786fc6178040ceb62b3fee8374233c18c842c00 /lib | |
parent | 64139f9a3660d779fdc59747ca465c48aef04648 (diff) | |
download | nixfiles-a46864566b13b61bddd9b0ee15457efa288ec3de.tar.lz nixfiles-a46864566b13b61bddd9b0ee15457efa288ec3de.tar.zst nixfiles-a46864566b13b61bddd9b0ee15457efa288ec3de.zip |
pin channels using nix.nixPath rather than using ~/.nix-defexpr
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 93f64059..023566e5 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -10,7 +10,7 @@ rec { if s.type == "local" then - lib.path.append ../. s.outPath + toString (lib.path.append ../. s.outPath) else toString s.outPath ; |