aboutsummaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-05-11 21:41:54 -0700
committerCaroline Larimore <caroline@larimo.re>2025-05-11 21:41:54 -0700
commit208e3a54270f9d832bdf355ca9eca67abad7866b (patch)
tree148f39d6e4b6da297b00273a62eca5e88236e380 /modules/home
parent355b6781b1a5889907ff217b42f10711c50e5f91 (diff)
bash: enable direnv
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/tools/bash/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/home/tools/bash/default.nix b/modules/home/tools/bash/default.nix
index d0f0d9d..c8704de 100644
--- a/modules/home/tools/bash/default.nix
+++ b/modules/home/tools/bash/default.nix
@@ -11,5 +11,11 @@ in {
programs.bash = {
enable = true;
};
+
+ programs.direnv = {
+ enable = true;
+ nix-direnv.enable = true;
+ silent = true;
+ };
};
}