diff --git a/nix/home/opdavies/default.nix b/nix/home/opdavies/default.nix
index fc09077e..d3bc1f8b 100644
--- a/nix/home/opdavies/default.nix
+++ b/nix/home/opdavies/default.nix
@@ -73,7 +73,6 @@ in
     );
 
   home.sessionVariables = {
-    DIRENV_LOG_FORMAT = "";
     EDITOR = "nvim";
     LANG = "en_GB.UTF-8";
     LC_ALL = "en_GB.UTF-8";
diff --git a/nix/modules/home-manager/features/cli/direnv.nix b/nix/modules/home-manager/features/cli/direnv.nix
index 0509ce5b..5f39dd50 100644
--- a/nix/modules/home-manager/features/cli/direnv.nix
+++ b/nix/modules/home-manager/features/cli/direnv.nix
@@ -9,7 +9,10 @@ with lib;
     programs.direnv = {
       enable = true;
       enableZshIntegration = true;
+
       nix-direnv.enable = true;
+
+      silent = true;
     };
   };
 }