separated programs directory

This commit is contained in:
John Lancaster
2026-03-08 13:31:33 -05:00
parent f7735089df
commit b96b9b2409
17 changed files with 17 additions and 43 deletions

View File

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