diff options
author | Alan Pearce | 2024-05-21 09:22:18 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-21 09:22:18 +0200 |
commit | 0d9e6aa06b267c71c358a034c82412f28b589917 (patch) | |
tree | b325d20cfdbc6a84d6aa391012e4638bdb72838c /user | |
parent | da560ebda355d444d963f73b1086989d80d3dd10 (diff) | |
download | nixfiles-0d9e6aa06b267c71c358a034c82412f28b589917.tar.lz nixfiles-0d9e6aa06b267c71c358a034c82412f28b589917.tar.zst nixfiles-0d9e6aa06b267c71c358a034c82412f28b589917.zip |
avoid hardcoding absolute path to this repo in nix
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/shell.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/settings/shell.nix b/user/settings/shell.nix index 62f68e14..76c5621e 100644 --- a/user/settings/shell.nix +++ b/user/settings/shell.nix @@ -30,7 +30,7 @@ in llr = "ll -t"; c = "lk"; - "c," = "cd $(ghq list -p nixfiles)"; + "c," = "cd ${toString ../..}"; cg = "cd $(git root)"; cdg = "cd $(git root)"; |