We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c929bea commit 6849632Copy full SHA for 6849632
devenv.nix
@@ -8,7 +8,9 @@ in
8
env.GREET = "devenv";
9
10
# https://devenv.sh/packages/
11
- packages = [ pkgs.git ];
+ packages = [ pkgs.git ] ++ lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk; [
12
+ frameworks.AppKit
13
+ ]);
14
15
# https://devenv.sh/languages/
16
languages.javascript.enable = true;
0 commit comments