feat: Set aliases in Bash

Simply enabling `programs.bash` in home-manager does the trick. }:)
This commit is contained in:
Madeleine Sydney
2025-01-03 17:45:36 -07:00
parent d28f838e56
commit 7cb5082b5b
3 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
programs.bash = {
enable = true;
};
}