Created
January 1, 2026 16:23
-
-
Save avisek/a93d2f2444f9911e90dc64cf6a78abeb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {pkgs, ...}: { | |
| nixpkgs.overlays = [ | |
| (final: prev: { | |
| macos-audio-devices = prev.writeShellScriptBin "macos-audio-devices" '' | |
| export PATH="${prev.nodejs}/bin:${prev.pnpm}/bin:$PATH" | |
| exec ${prev.pnpm}/bin/pnpx macos-audio-devices "$@" | |
| ''; | |
| }) | |
| ]; | |
| environment.systemPackages = with pkgs; [ | |
| macos-audio-devices | |
| ]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment