1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 10:07:44 +00:00
ncc/modules/common/shell/zoxide.nix
2025-07-19 21:02:03 +03:00

9 lines
161 B
Nix

{ lib, ... }: let
inherit (lib) enabled;
in {
home-manager.sharedModules = [{
programs.zoxide = enabled {
options = [ "--cmd cd" ];
};
}];
}