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
`wezterm` | my terminal of choice
`zathura` | pdf viewer
`zellij` | terminal multiplexer
`zoxide` | smarter cd command
`zellij` | terminal multiplexer

View file

@ -6,12 +6,14 @@
./helix
./git
./lazygit
./zoxide
./lf
./direnv
];
home.packages = with pkgs; [
croc
exa
ripgrep
lazydocker
yt-dlp
nfs-utils
@ -52,4 +54,11 @@
+ "/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"
];
};
}