9 lines
156 B
Nix
9 lines
156 B
Nix
{
|
|
flake.modules.homeManager.bash = { pkgs, lib, config, ... }:
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
};
|
|
};
|
|
} |