zaneyos/config/home/bash.nix
2024-02-17 12:57:15 -06:00

39 lines
1.0 KiB
Nix

{ config, lib, pkgs, ... }:
let inherit (import ../../options.nix) flakeDir flakePrev flakeBackup theShell; in
lib.mkIf (theShell == "bash") {
# Configure Bash
programs.bash = {
enable = true;
enableCompletion = true;
profileExtra = ''
#if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
# exec Hyprland
#fi
'';
initExtra = ''
neofetch
if [ -f $HOME/.bashrc-personal ]; then
source $HOME/.bashrc-personal
fi
'';
sessionVariables = {
ZANEYOS = true;
FLAKEBACKUP = "${flakeBackup}";
FLAKEPREV = "${flakePrev}";
};
shellAliases = {
sv="sudo nvim";
flake-rebuild="nh os switch --nom --hostname ${flakeDir}";
flake-update="nh os switch --nom --hostname ${flakeDir} --update";
gcCleanup="nix-collect-garbage --delete-old && sudo nix-collect-garbage -d && sudo /run/current-system/bin/switch-to-configuration boot";
v="nvim";
ls="lsd";
ll="lsd -l";
la="lsd -a";
lal="lsd -al";
".."="cd ..";
};
};
}