diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-17T09·08+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-20T10·26+0100 |
commit | 59f74814111045b6d74d2a8f5b4f4bfbd1cacd85 (patch) | |
tree | d87397c2b1f32bdc1d3df0ab4d4f62d1cf065426 /configs | |
parent | 7833632a7961038e8898ef287fd2dedf8fa7f33b (diff) |
Revise previous opinions about absolute paths GT <bracket-notation>
Unforeseen problem: `buildkite-agent` runs its builds in a separate directory, so if I want the `nix-build` command to build the newly checked out code, I need to set <briefcase> to the CWD.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/.config/nixpkgs/home.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/.config/nixpkgs/home.nix b/configs/.config/nixpkgs/home.nix index ee461dc9b33c..d23d04f6aa57 100644 --- a/configs/.config/nixpkgs/home.nix +++ b/configs/.config/nixpkgs/home.nix @@ -8,7 +8,7 @@ # I believe these calls depend on nixpkgs being set in NIX_PATH, which is a # dependency that I'm trying to prune... let - briefcase = import /home/wpcarro/briefcase {}; + briefcase = import <briefcase> {}; in { home = { packages = with pkgs; [ |