mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-07 13:22:04 +00:00
25 lines
354 B
Nix
25 lines
354 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
cfg = config.nmasur.presets.programs.zoxide;
|
||
|
in
|
||
|
|
||
|
{
|
||
|
|
||
|
options.nmasur.presets.programs.zoxide.enable = lib.mkEnableOption "zoxide smart cd replacement";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
|
||
|
programs.zoxide = {
|
||
|
enable = true;
|
||
|
enableFishIntegration = true;
|
||
|
enableBashIntegration = true;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
}
|