mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
19 lines
460 B
Nix
19 lines
460 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
inherit (lib.types) nullOr package;
|
|
in {
|
|
options.vim.utility.vim-wakatime = {
|
|
enable = mkEnableOption "vim-wakatime: live code statistics";
|
|
|
|
cli-package = mkOption {
|
|
type = nullOr package;
|
|
default = pkgs.wakatime;
|
|
description = "The package that should be used for wakatime-cli. Set as null to use the default path in `$XDG_DATA_HOME`";
|
|
};
|
|
};
|
|
}
|