add programs
git, starship, bash, and opencode
This commit is contained in:
parent
c23d7c2cf0
commit
d0df309854
1 changed files with 23 additions and 0 deletions
23
home.nix
23
home.nix
|
|
@ -28,6 +28,29 @@
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
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
|
# This value determines the Home Manager release that your configuration is
|
||||||
# compatible with. This helps avoid breakage when a new Home Manager release
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
# introduces backwards incompatible changes.
|
# introduces backwards incompatible changes.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue