home-manager/modules/bash.nix

12 lines
156 B
Nix
Raw Normal View History

2023-08-26 16:35:30 +00:00
{...}: {
config.programs.bash = {
enable = true;
shellAliases = {
ll = "ls -lh";
la = "ls -lah";
".." = "cd ..";
};
2023-07-23 03:04:32 +00:00
};
}