home-manager/home/bash.nix

9 lines
115 B
Nix
Raw Normal View History

2023-07-23 03:04:32 +00:00
{enable}: {
inherit enable;
shellAliases = {
ll = "ls -lh";
la = "ls -lah";
".." = "cd ..";
};
}