Files
Olympus/homes/nathan/home-manager/programs/terminal/zoxide/default.nix
2026-01-20 17:30:56 -06:00

14 lines
155 B
Nix

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