diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-16T18·06-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-16T21·03+0000 |
commit | 1b42504a12aa42fbb080c4be1182c3ee9df21fc6 (patch) | |
tree | 0f876060b3fcd5677c4d3067aa61674d319e511b /users | |
parent | e05eb201023a4bd12988c394a919fe6c71086c67 (diff) |
feat(gs/shell): Add "nix build local" alias r/1324
For when I'm building stuff I don't want to build on whitby. Change-Id: Ic377fe0d68436a81ee479ff4aa029a51e0a5babf Reviewed-on: https://cl.tvl.fyi/c/depot/+/1215 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r-- | users/glittershark/system/home/modules/shell.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/glittershark/system/home/modules/shell.nix b/users/glittershark/system/home/modules/shell.nix index 71e607063fe2..5bb3c1854814 100644 --- a/users/glittershark/system/home/modules/shell.nix +++ b/users/glittershark/system/home/modules/shell.nix @@ -14,6 +14,7 @@ let # Nix ns = "nix-shell"; nb = "nix build -f ."; + nbl = "nix build -f . --builders ''"; # nix build local nc = "nix copy --to https://nix.urbinternal.com"; "nc." = "nix copy -f . --to https://nix.urbinternal.com"; |