summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-19 18:14:41 -0600
committerChristian <[email protected]>2026-01-21 13:24:48 -0600
commit87f65f5fc4232dbd9aa5dc1994a42f5d920ef7f5 (patch)
tree53ed1fcd1d83db78d9d823f007dedc964d7284d6
parentc6bde11f98a55c30022c1fb91e56abd3d37e9687 (diff)
nix-direnv
-rw-r--r--modules/home/christian.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/home/christian.nix b/modules/home/christian.nix
index 461f273..61f63c9 100644
--- a/modules/home/christian.nix
+++ b/modules/home/christian.nix
@@ -6,11 +6,20 @@
home.packages = with pkgs; [ ];
+ programs.bash.enable = true;
+
programs.git = {
enable = true;
settings.user.name = "Christian";
settings.user.email = "[email protected]";
};
+ programs.direnv = {
+ enable = true;
+ enableBashIntegration = true;
+ nix-direnv.enable = true;
+ silent = true;
+ };
+
programs.home-manager.enable = true;
}