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,7 +1,4 @@
{ {pkgs, ...}: {
pkgs,
...
} : {
programs.bash = { programs.bash = {
enable = true; enable = true;
bashrcExtra = ". ${./.bashrc}"; bashrcExtra = ". ${./.bashrc}";
@ -14,6 +11,6 @@
home.packages = [ home.packages = [
pkgs.starship pkgs.starship
pkgs.zoxide
]; ];
} }