-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add lean4 to nixpkgs packages #1754
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
Changes from all commits
134574e
a4679b6
6b92440
2aef920
bc50edb
320627a
7c477e6
7120479
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,9 @@ | ||
| [ids] | ||
| * | ||
| # Framework 13 AI 300 embedded controller (I2C HID). keyd's `*` wildcard | ||
| # does not grab I2C HID consumer control devices, so the Framework key | ||
| # bypasses keyd unless this id is listed explicitly. | ||
| 32ac:0006 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Scope drift (nit): This keyd fix is unrelated to the PR's stated purpose ( |
||
| # xremap creates its own virtual keyboard device via uinput. By default, xremap | ||
| # uses vendor/product 0x1234/0x5678 for that output device. | ||
| # | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Latent regression on macOS GUI launches: Previously
config/ghostty/default.nixsubstituted__FISH_PATH__with${pkgs.fish}/bin/fishat build time, so this line was an absolute Nix store path. Now ghostty must resolvefishvia PATH (execvp). On macOS, ghostty.app launched from Finder/Spotlight/dock inherits launchd's PATH, which by default contains only/usr/bin:/bin:/usr/sbin:/sbinplus entries in/etc/paths.d/*. The nix multi-user installer adds/nix/var/nix/profiles/default/binthere, but~/.nix-profile/bin— where home-manager installsfish— is not on launchd's PATH unless the user manually ranlaunchctl setenv PATH .... Result: ghostty may fail to spawn the shell. On Linux desktop sessions this is fine because Hyprland/etc. inherit the user's session PATH. Either restore the${pkgs.fish}/bin/fishsubstitution or document the launchd PATH requirement.