Skip to content

Commit

Permalink
feat: add nix-darwin support (#15456)
Browse files Browse the repository at this point in the history
* feat: add nix-darwin support

* docs: update CHANGELOG for sesh

* Update CHANGELOG.md

* Update CHANGELOG.md and optimise images

---------

Co-authored-by: Per Nielsen Tikær <[email protected]>
Co-authored-by: raycastbot <[email protected]>
  • Loading branch information
3 people authored Dec 4, 2024
1 parent 8a04340 commit bd31313
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions extensions/sesh/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Sesh Changelog

## [Add nix-darwin support] - 2024-12-04

- Add [nix-darwin](https://github.com/LnL7/nix-darwin) support by adding `/run/current-system/sw/bin/` to the PATH

## Add config source - 03-28-24

- Add config section between tmux and zoxide in list items
Expand Down
4 changes: 3 additions & 1 deletion extensions/sesh/src/env.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export const env = Object.assign({}, process.env, { PATH: "/usr/local/bin:/usr/bin:/opt/homebrew/bin" });
export const env = Object.assign({}, process.env, {
PATH: "/usr/local/bin:/usr/bin:/opt/homebrew/bin:/run/current-system/sw/bin",
});

0 comments on commit bd31313

Please sign in to comment.