mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 23:49:43 +00:00
19 lines
325 B
Nix
19 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)"
|
|
'';
|
|
};
|
|
};
|
|
}
|