new stuff

This commit is contained in:
BalrajSinghGidda
2025-12-13 00:12:08 +05:30
parent 6213e81d7e
commit 133238d1c7
2 changed files with 13 additions and 0 deletions

View File

@@ -48,6 +48,9 @@
services.flatpak.enable = true;
programs.bash.completion.enable = true;
programs.bash.blesh.enable = true;
services.tailscale.enable = true;
users.users.balraj = {
@@ -102,6 +105,8 @@
pamixer
direnv
libnotify
udisks2
eject
dunst
maim
slop

View File

@@ -20,6 +20,8 @@ in
programs.bash = {
enable = true;
bashmount.enable = true;
enableCompletion = true;
shellAliases = {
nc = "nvim ~/nixos-dotfiles/.";
btw = "echo I use NixOS, btw";
@@ -30,13 +32,19 @@ in
make-cpp-devshell = "bash ${bin}/make-cpp-devshell";
ls = "eza --long -ahF --no-user --no-permissions --git --icons=always --color=always --grid";
cd = "z";
bm = "bashmount";
};
historyIgnore = [
"ls"
"exit"
];
bashrcExtra = ''
export PS1="\[\e[38;5;75m\]\u@\h \[\e[38;5;113m\]\w \[\e[38;5;189m\]\$ \[\e[0m\]"
export MANPAGER="nvim +Man!"
export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow'
eval "$(direnv hook bash)"
eval "$(zoxide init bash)"
export POSH_SESSION_ID="5019232b-7132-4b5d-a914-4ddc9b73b2a3";source $'/home/balraj/.cache/oh-my-posh/init.8949049596678462984.sh'
nitch
'';
};