Prefer home variable rather than hard coded path to readTree
TIL: Nix support the ~ as a home variable, which makes my code more portable since it's shared between my work laptop and work desktop.
This commit is contained in:
parent
d67993266f
commit
be0e05c669
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ let
|
|||
inherit pkgs;
|
||||
};
|
||||
|
||||
readTree' = import /home/wpcarro/depot/nix/readTree {};
|
||||
readTree' = import ~/depot/nix/readTree {};
|
||||
|
||||
# TODO: Find a better way to expose entire monorepo without introducing
|
||||
# "infinite recursion".
|
||||
|
|
Loading…
Reference in a new issue