Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apps/frontend/src/main/env-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ export const COMMON_BIN_PATHS: Record<string, string[]> = {
'/usr/local/sbin', // Intel Homebrew sbin
'~/.local/bin', // User-local binaries (Claude CLI)
'~/.dotnet/tools', // .NET global tools
'~/.nix-profile/bin', // Nix/home-manager user profile
'/nix/var/nix/profiles/default/bin', // Determinate Nix default profile
],
linux: [
'/usr/local/bin',
Expand All @@ -130,6 +132,9 @@ export const COMMON_BIN_PATHS: Record<string, string[]> = {
'~/.local/bin', // User-local binaries
'~/.dotnet/tools', // .NET global tools
'/usr/sbin', // System admin binaries
'~/.nix-profile/bin', // Nix/home-manager user profile
'/nix/var/nix/profiles/default/bin', // Determinate Nix default profile
'/run/current-system/sw/bin', // NixOS system profile
],
win32: [
// Windows usually handles PATH better, but we can add common locations
Expand Down
Loading