nixos-config/modules/home/all/nushell/env.nu
2024-09-28 18:01:53 -04:00

7 lines
223 B
Text

$env.PATH = (
$env.PATH
| split row (char esep)
| prepend $"/etc/profiles/per-user/($env.USER)/bin"
| prepend '/run/current-system/sw/bin/'
| prepend '/Applications/Docker.app/Contents/Resources/bin/'
)