10 lines
170 B
Nix
10 lines
170 B
Nix
{
|
|
flake.modules.homeManager.bash = { pkgs, ... }:
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
package = pkgs.bash;
|
|
};
|
|
};
|
|
} |