mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2025-02-23 08:10:02 +00:00
20 lines
325 B
Nix
20 lines
325 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
options = {
|
||
|
bash.enable = lib.mkEnableOption "enable bash";
|
||
|
};
|
||
|
config = lib.mkIf config.bash.enable {
|
||
|
programs.bash = {
|
||
|
enable = false;
|
||
|
bashrcExtra = ''
|
||
|
. ~/.bashrc
|
||
|
eval "$(direnv hook bash)"
|
||
|
eval "$(starship init bash)"
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|