blob: f86a725570aabdc4299fedca952812408809bf98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ config, lib, pkgs, ... }:
let
cfg = config.modules.zoxide;
inherit (lib) mkEnableOption mkOption mkIf types;
in
{
options.modules.zoxide = {
enable = mkOption {
type = types.bool;
default = true;
description = "enable zoxide";
};
};
config = mkIf cfg.enable {
programs.zoxide = {
enable = true;
enableZshIntegration = true;
# options = [
# ];
};
};
}
|