summary refs log tree commit diff stats
path: root/user/settings/shell.nix
diff options
context:
space:
mode:
authorAlan Pearce2025-03-20 09:54:45 +0100
committerAlan Pearce2025-03-20 09:54:45 +0100
commit82f7639c8527a04746443fc134a8773bfa7a7c52 (patch)
tree98e9128c6df5e11e213fb41e17adb0bbeda76623 /user/settings/shell.nix
parent0408451b4d305ca9d4e5238490953fc5afbed017 (diff)
downloadnixfiles-82f7639c8527a04746443fc134a8773bfa7a7c52.tar.lz
nixfiles-82f7639c8527a04746443fc134a8773bfa7a7c52.tar.zst
nixfiles-82f7639c8527a04746443fc134a8773bfa7a7c52.zip
shell: use nix-build as target for nb alias
Diffstat (limited to 'user/settings/shell.nix')
-rw-r--r--user/settings/shell.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/user/settings/shell.nix b/user/settings/shell.nix
index a51595aa..9807169d 100644
--- a/user/settings/shell.nix
+++ b/user/settings/shell.nix
@@ -125,7 +125,7 @@ in
       jr = "just run";
 
       nsh = "nix-shell";
-      nb = "nix build";
+      nb = "nix-build";
       nd = "nix develop";
       nl = "nix log"; # shadows `coreutils.nl`, but I've never used that yet
       nr = "nix run";
@@ -136,6 +136,7 @@ in
       nfu = "nix flake update";
       nfl = "nix flake lock";
       nfsh = "nix shell";
+      nfb = "nix build";
       nlg = "nix-env --list-generations";
       snlg = "sudo nix-env --list-generations --profile /nix/var/nix/profiles/system";
       ngc = "nix-collect-garbage --delete-older-than 30d";