Add direnv

Change-Id: I1ed4a900cc0508ae232e1c244716225fbf0fdd0c
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/508
Reviewed-by: Samuel Shuert <coded@clicks.codes>
Tested-by: Samuel Shuert <coded@clicks.codes>
Tested-by: Skyler Grey <minion@clicks.codes>
diff --git a/modules/home/direnv/default.nix b/modules/home/direnv/default.nix
new file mode 100644
index 0000000..3023e02
--- /dev/null
+++ b/modules/home/direnv/default.nix
@@ -0,0 +1,9 @@
+{ config, lib, pkgs, ... }:
+{
+  programs.direnv = {
+    enable = true;
+    nix-direnv.enable = true;
+    enableZshIntegration = config.chimera.shell.zsh.enable;
+    enableBashIntegration = config.chimera.shell.bash.enable;
+  };
+}