diff options
author | Alan Pearce | 2025-03-20 09:54:45 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-20 09:54:45 +0100 |
commit | 82f7639c8527a04746443fc134a8773bfa7a7c52 (patch) | |
tree | 98e9128c6df5e11e213fb41e17adb0bbeda76623 /user | |
parent | 0408451b4d305ca9d4e5238490953fc5afbed017 (diff) | |
download | nixfiles-82f7639c8527a04746443fc134a8773bfa7a7c52.tar.lz nixfiles-82f7639c8527a04746443fc134a8773bfa7a7c52.tar.zst nixfiles-82f7639c8527a04746443fc134a8773bfa7a7c52.zip |
shell: use nix-build as target for nb alias
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/shell.nix | 3 |
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"; |