There was an error while loading. Please reload this page.
1 parent cf0c6f5 commit d4d1449Copy full SHA for d4d1449
2 files changed
home-manager/flake.nix
@@ -24,6 +24,15 @@
24
pkgs-unstable = import nixpkgs-unstable {
25
inherit system;
26
config.allowUnfree = true;
27
+ overlays = [
28
+ # Disable direnv's checkPhase globally; it hangs on macOS.
29
+ # This also unifies direnv into a single derivation so that
30
+ # downstream build inputs (e.g. mise) reuse the same one
31
+ # and avoid a duplicate rebuild.
32
+ (final: prev: {
33
+ direnv = prev.direnv.overrideAttrs (_: { doCheck = false; });
34
+ })
35
+ ];
36
};
37
lib = pkgs.lib;
38
home-manager/packages/common.nix
@@ -13,7 +13,7 @@
13
pkgs-unstable.codex
14
pkgs.curl
15
pkgs.delta
16
- (pkgs-unstable.direnv.overrideAttrs (_: { doCheck = false; }))
+ pkgs-unstable.direnv
17
pkgs.fac
18
pkgs.fd
19
pkgs.fswatch
0 commit comments