home: move zoxide to default

This commit is contained in:
notohh 2023-05-17 08:57:12 -04:00
parent 00b1619eba
commit e083de0ba6
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 11 additions and 12 deletions

View file

@ -20,5 +20,4 @@ name | description
`wayland` | has my hyprland config, along with session variables for wayland `wayland` | has my hyprland config, along with session variables for wayland
`wezterm` | my terminal of choice `wezterm` | my terminal of choice
`zathura` | pdf viewer `zathura` | pdf viewer
`zellij` | terminal multiplexer `zellij` | terminal multiplexer
`zoxide` | smarter cd command

View file

@ -6,12 +6,14 @@
./helix ./helix
./git ./git
./lazygit ./lazygit
./zoxide ./lf
./direnv ./direnv
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
croc croc
exa
ripgrep
lazydocker lazydocker
yt-dlp yt-dlp
nfs-utils nfs-utils
@ -52,4 +54,11 @@
+ "/Catppuccin-mocha.tmTheme"); + "/Catppuccin-mocha.tmTheme");
}; };
}; };
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
options = [
"--cmd cdd"
];
};
} }

View file

@ -1,9 +0,0 @@
{...}: {
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
options = [
"--cmd cdd"
];
};
}