feat(shell -> bash): Added zoxide nix package dependency

This commit is contained in:
Culis Gaspard 2024-09-23 14:43:54 +02:00
parent d7d00bb1a3
commit b8e03ddcdb

View file

@ -1,19 +1,16 @@
{ {pkgs, ...}: {
pkgs,
...
} : {
programs.bash = { programs.bash = {
enable = true; enable = true;
bashrcExtra = ". ${./.bashrc}"; bashrcExtra = ". ${./.bashrc}";
}; };
home.file = { home.file = {
".bash_aliases".source = ./.bash_aliases; ".bash_aliases".source = ./.bash_aliases;
".bash_exec".source = ./.bash_exec; ".bash_exec".source = ./.bash_exec;
}; };
home.packages = [ home.packages = [
pkgs.starship pkgs.starship
pkgs.zoxide
]; ];
} }