dotfiles/modules/home/cli/shell/zoxide/default.nix

11 lines
152 B
Nix
Raw Normal View History

2025-01-19 23:40:54 -06:00
{ pkgs, ... }:
{
2024-10-06 15:25:05 -05:00
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
package = pkgs.zoxide;
options = [
];
};
}