mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-23 15:13:12 +01:00
29 lines
659 B
Nix
29 lines
659 B
Nix
{ config, pkgs, flakeDir, ... }:
|
|
|
|
{
|
|
# Configure Bash
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
profileExtra = ''
|
|
#if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
|
|
# exec Hyprland
|
|
#fi
|
|
'';
|
|
sessionVariables = {
|
|
|
|
};
|
|
shellAliases = {
|
|
sv="sudo vim";
|
|
flake-rebuild="sudo nixos-rebuild switch --flake ${flakeDir}";
|
|
gcCleanup="nix-collect-garbage --delete-old && sudo nix-collect-garbage -d && sudo /run/current-system/bin/switch-to-configuration boot";
|
|
v="vim";
|
|
ls="lsd";
|
|
ll="lsd -l";
|
|
la="lsd -a";
|
|
lal="lsd -al";
|
|
".."="cd ..";
|
|
};
|
|
};
|
|
}
|