10 lines
225 B
Nix
10 lines
225 B
Nix
{
|
|
flake.modules.homeManager.bash = { pkgs, lib, config, ... }:
|
|
{
|
|
programs.bash = lib.mkIf (config.shell.program == "bash") {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
package = pkgs.bash;
|
|
};
|
|
};
|
|
} |