Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Nix build on x86_64-darwin #6280

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Oct 21, 2024

  1. nix/flake.lock: update

    Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
    siriobalmelli committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    1dfb800 View commit details
    Browse the repository at this point in the history
  2. nix/flake.nix: fix x86_64-darwin build

    The default SDK errors missing UserNotifications on x86_64-darwin.
    
    Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
    siriobalmelli committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    19c3d1d View commit details
    Browse the repository at this point in the history
  3. WezTerm.app/Contents/Info.plist: request network permissions

    On MacOS 15 (Sequoia) and later,
    Wezterm.app should ask for a LocalNetwork entitlement by default.
    
    This fixes mysterious network failures (eg: 'no route to host') when:
    
    - Wezterm is a toplevel process (ie: not a child of a process
      that already has LocalNetwork entitlement, like Terminal)
    - A shell running inside Wezterm executes a process which accesses the network,
      but does not itself already have a LocalNetwork entitlement,
      eg: /etc/profiles/per-user/$(whoami)/bin/ssh
      for ssh installed by nix home-manager.
    
    Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
    siriobalmelli committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    d18e2c5 View commit details
    Browse the repository at this point in the history