nix-config/modules/home-manager/shell/zoxide.nix
2025-05-30 21:10:10 +02:00

11 lines
101 B
Nix

{ ... }:
{
programs.zoxide = {
enable = true;
options = [
"--cmd cd"
];
};
}