changed how my nd alias works

This commit is contained in:
foxora 2026-03-14 22:18:57 +00:00
parent c2a581e1be
commit ffc65678ea

View file

@ -56,7 +56,7 @@
# open nix develop with preferred shell
# description: nd = nix develop
nd = "./flake.sh -c $SHELL || nix develop -c $SHELL";
nd = "{ [[ -f ./flake.sh ]] && ./flake.sh -c $SHELL; } || nix develop -c $SHELL";
# description: cdns = change directory [to] nix settings
cdns = "cd ~/.nix";