zaneyos/config/home/bash.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2024-02-09 05:32:21 +01:00
{ config, lib, pkgs, ... }:
2024-01-18 08:36:06 +01:00
2024-02-17 20:12:34 +01:00
let inherit (import ../../options.nix) flakeDir flakePrev
hostname flakeBackup theShell; in
2024-02-09 03:51:04 +01:00
lib.mkIf (theShell == "bash") {
2024-01-18 08:36:06 +01:00
# Configure Bash
programs.bash = {
enable = true;
enableCompletion = true;
profileExtra = ''
#if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
# exec Hyprland
#fi
'';
2024-01-24 06:32:20 +01:00
initExtra = ''
neofetch
if [ -f $HOME/.bashrc-personal ]; then
source $HOME/.bashrc-personal
fi
2024-01-24 06:32:20 +01:00
'';
2024-01-18 08:36:06 +01:00
sessionVariables = {
ZANEYOS = true;
FLAKEBACKUP = "${flakeBackup}";
FLAKEPREV = "${flakePrev}";
2024-01-18 08:36:06 +01:00
};
shellAliases = {
sv="sudo nvim";
2024-02-17 20:12:34 +01:00
flake-rebuild="nh os switch --nom --hostname ${hostname}";
flake-update="nh os switch --nom --hostname ${hostname} --update";
2024-01-18 08:36:06 +01:00
gcCleanup="nix-collect-garbage --delete-old && sudo nix-collect-garbage -d && sudo /run/current-system/bin/switch-to-configuration boot";
2024-02-05 21:18:53 +01:00
v="nvim";
2024-01-18 08:36:06 +01:00
ls="lsd";
ll="lsd -l";
la="lsd -a";
lal="lsd -al";
".."="cd ..";
2024-02-18 02:17:13 +01:00
neofetch="neofetch --ascii ~/.config/ascii-neofetch";
2024-01-18 08:36:06 +01:00
};
};
}