From 819bec88c3701598d8fe50cef8679c0f2e20e590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 20 Oct 2021 10:14:22 +0200 Subject: [PATCH] don't make direnvrc exectuable fixes https://github.com/nix-community/nix-direnv/issues/117 --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 16eb555..84c4e27 100644 --- a/default.nix +++ b/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation { ''; installPhase = '' - install -m500 -D direnvrc $out/share/nix-direnv/direnvrc + install -m400 -D direnvrc $out/share/nix-direnv/direnvrc ''; meta = with lib; {