diff options
author | Linnnus <[email protected]> | 2025-02-06 18:20:17 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-02-06 18:20:17 +0100 |
commit | 59ef6972778ef867b0bccf04efdfce38e8134d8d (patch) | |
tree | c7c2c4f85124bfc821e2a5819fef0f687dbc5cef | |
parent | 932ebdb655b55d8f1a32d7f0f4da5346b172e365 (diff) |
Add direnv ZSH integratino
-rw-r--r-- | shared/home-manager/zsh/plugins.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shared/home-manager/zsh/plugins.nix b/shared/home-manager/zsh/plugins.nix index 6dbc151..b1cfdfb 100644 --- a/shared/home-manager/zsh/plugins.nix +++ b/shared/home-manager/zsh/plugins.nix @@ -44,4 +44,9 @@ in { initExtra = concatStringsSep "\n" (catAttrs "config" plugins); }; + + programs.direnv = { + enable = true; + enableZshIntegration = true; + }; } |