diff --git a/home.nix b/home.nix index 70d2ce0..b078a4b 100644 --- a/home.nix +++ b/home.nix @@ -28,6 +28,29 @@ programs.home-manager.enable = true; + programs.git = { + enable = true; + userName = "Yisroel Baum"; + userEmail = "yisroel.d.baum@gmail.com"; + }; + programs.starship = { + enable = true; + settings = { + add_newline = false; + aws.disabled = true; + gcloud.disabled = true; + line_break.disabled = true; + }; + }; + programs.bash = { + enable = true; + enableCompletion = true; + # TODO add your custom bashrc here + bashrcExtra = '' + export PATH=/home/yisroel/.opencode/bin:$PATH + ''; + }; + programs.opencode.enable = true; # This value determines the Home Manager release that your configuration is # compatible with. This helps avoid breakage when a new Home Manager release # introduces backwards incompatible changes.