core: enable direnv in bash
This commit is contained in:
parent
39c1a48674
commit
60ae677683
|
@ -15,6 +15,7 @@ in
|
||||||
binutils
|
binutils
|
||||||
coreutils
|
coreutils
|
||||||
curl
|
curl
|
||||||
|
direnv
|
||||||
dnsutils
|
dnsutils
|
||||||
dosfstools
|
dosfstools
|
||||||
fd
|
fd
|
||||||
|
@ -122,9 +123,14 @@ in
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.bash.promptInit = ''
|
programs.bash = {
|
||||||
|
promptInit = ''
|
||||||
eval "$(${pkgs.starship}/bin/starship init bash)"
|
eval "$(${pkgs.starship}/bin/starship init bash)"
|
||||||
'';
|
'';
|
||||||
|
shellInit = ''
|
||||||
|
eval "$(${pkgs.direnv}/bin/direnv hook bash)"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
security = {
|
security = {
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,6 @@ in
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
bat
|
bat
|
||||||
bzip2
|
bzip2
|
||||||
direnv
|
|
||||||
exa
|
exa
|
||||||
gitAndTools.hub
|
gitAndTools.hub
|
||||||
gzip
|
gzip
|
||||||
|
|
Loading…
Reference in a new issue