mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-08 19:31:31 +00:00
feat: provide wakatime-cli package option
This commit is contained in:
parent
4e43b6e009
commit
50c2e91626
2 changed files with 19 additions and 1 deletions
|
@ -1,7 +1,17 @@
|
|||
{lib, ...}:
|
||||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with builtins; {
|
||||
options.vim.utility.vim-wakatime = {
|
||||
enable = mkEnableOption "Enable vim-wakatime";
|
||||
|
||||
cli-package = mkOption {
|
||||
type = with types; 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`";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue