14 lines
250 B
Nix
14 lines
250 B
Nix
|
{ config, lib, ... }:
|
||
|
let
|
||
|
cfg = config.my.home.nix-index;
|
||
|
in
|
||
|
{
|
||
|
options.my.home.nix-index = with lib.my; {
|
||
|
enable = mkDisableOption "nix-index configuration";
|
||
|
};
|
||
|
|
||
|
config.programs.nix-index = lib.mkIf cfg.enable {
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|