Files
Olympus/home-manager/nix-on-droid/programs/terminal/zoxide/default.nix

14 lines
155 B
Nix

{ config, lib, pkgs, ... }: {
programs.zoxide = {
enable = true;
enableZshIntegration = true;
options = [
"--cmd cd"
];
};
}