home/fish: add nix-wrapper to use nom if available

This commit is contained in:
Primrose 2026-01-02 18:35:41 +01:00
parent 09e7d1adb8
commit 5d309c2d4e
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,7 @@
function nix-build
if type -q nix-build
nom-build $argv
else
nix-build $argv
end
end