RedNix-Base/Modules/home/bash.nix

26 lines
756 B
Nix

{ config, pkgs, ... }:
{
#bash
programs.bash = {
enableCompletion = true;
enable = true;
bashrcExtra = "";
shellAliases = {
please = "sudo";
plz = "sudo";
ll = "ls -l -a";
update = "sudo nixos-rebuild switch -v";
".." = "cd ..";
cdroot = "cd /";
cdhome = "cd ~";
snano = "sudo nano";
cls = "clear";
icat = "kitten icat --align left ";
ic = "icat";
imgv = "icat";
redmatrix = "cmatrix -a -C red";
rmtx = "redmatrix";
};
};
}