nix-dotfiles/modules/bash.nix
2021-05-21 22:30:33 +02:00

11 lines
173 B
Nix

{
programs.bash = {
enable = true;
enableVteIntegration = true;
shellAliases = {
"ll" = "ls -l";
"la" = "ls -la";
".." = "cd ..";
};
};
}