mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
11 lines
216 B
Fish
11 lines
216 B
Fish
function nix
|
|
if [ $(count $argv) -lt 1 ]
|
|
command nix $argv
|
|
end
|
|
and if [ $argv[1] = "build" -o $argv[1] = "shell" ] && type -q nom
|
|
nom $argv
|
|
else
|
|
command nix $argv
|
|
end
|
|
end
|
|
|