feat(shell -> bash): Added zoxide
nix package dependency
This commit is contained in:
parent
d7d00bb1a3
commit
b8e03ddcdb
1 changed files with 4 additions and 7 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue