home-manager/home/bash.nix
2023-07-31 20:08:25 +02:00

9 lines
115 B
Nix

{enable}: {
inherit enable;
shellAliases = {
ll = "ls -lh";
la = "ls -lah";
".." = "cd ..";
};
}