summaryrefslogtreecommitdiff
path: root/modules/home/christian.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/christian.nix')
-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;
}