add programs

git, starship, bash, and opencode
This commit is contained in:
Yisroel Baum 2026-03-29 17:27:43 +03:00
parent c23d7c2cf0
commit d0df309854
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -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.