From 103c78ead1117dca9d12f2ea8b97f3e5399cd5e2 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 25 Oct 2023 13:46:13 -0400 Subject: [PATCH] feat: Add direnv Makes it possible to cd into directories with nix flakes and automatically have a development environment set up. --- modules/neovim.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/neovim.nix b/modules/neovim.nix index 215faa3..ed5855c 100644 --- a/modules/neovim.nix +++ b/modules/neovim.nix @@ -1,5 +1,6 @@ { programs.neovim.enable = true; + programs.direnv.enable = true; environment.sessionVariables = { EDITOR = "nvim";