From 0838e60998ba69c4b890bee3334a7b718841859b Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Tue, 24 Feb 2026 12:26:01 +1000 Subject: [PATCH] Add direnv to home-manager --- alex/core.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/alex/core.nix b/alex/core.nix index 371e747..a314a46 100644 --- a/alex/core.nix +++ b/alex/core.nix @@ -16,6 +16,12 @@ tm = "tmux attach || tmux"; }; + programs.direnv = { + enable = true; + # enableFishIntegration = true; + nix-direnv.enable = true; +}; + home.file.".config/atuin/config.toml".source = ./atuin/config.toml; home.file.".config/nvim/init.lua".source = ./nvim/init.lua; home.file.".config/tmux/tmux.conf".source = ./tmux/tmux.conf;