shell organization

This commit is contained in:
John Lancaster
2026-02-16 16:37:13 -06:00
parent 64ed7ca735
commit 99dc4515a1
3 changed files with 29 additions and 16 deletions

View File

@@ -0,0 +1,10 @@
{
flake.homeModules.bash = { pkgs, lib, ... }:
{
programs.bash = {
enable = true;
enableCompletion = true;
package = pkgs.bash;
};
};
}