diff --git a/home/default.nix b/home/default.nix index 878c971..ee47524 100644 --- a/home/default.nix +++ b/home/default.nix @@ -13,8 +13,9 @@ ]; programs.nushell = { enable = true; + # TODO: Refactor using lists; or even upstream PATH setting to home-manager envFile.text = '' - let-env PATH = ($env.PATH | split row (char esep) | prepend $"/etc/profiles/per-user/($env.USER)/bin" | prepend '/run/current-system/sw/bin/') + let-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/') ''; }; };