added zoxide

This commit is contained in:
lsoriano-mcm
2025-07-04 14:39:20 -05:00
parent b9f125e76a
commit f8386beb6c
4 changed files with 17 additions and 4 deletions
+1
View File
@@ -6,6 +6,7 @@
../../packages/starship/home.nix
../../packages/fastfetch/home.nix
../../packages/zsh/home.nix
../../packages/zoxide/home.nix
../../packages/btop/home.nix
../../packages/eza/home.nix
+8 -3
View File
@@ -1,5 +1,10 @@
{pkgs, ...}: {
home.packages = with pkgs; [
eza
];
programs.eza = {
enable = true;
git = true;
colors = "auto";
enableZshIntegration = true;
enableFishIntegration = true;
enableBashIntegration = true;
};
}
-1
View File
@@ -3,7 +3,6 @@
myConfig,
...
}: {
programs.zoxide.enable = true;
programs.fish = {
enable = true;
interactiveShellInit = ''
+8
View File
@@ -0,0 +1,8 @@
{
programs.zoxide = {
enable = true;
enableFishIntegration = true;
enableZshIntegration = true;
enableBashIntegration = true;
};
}