mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-11-04 04:32:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			588 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			588 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  pkgs,
 | 
						|
  lib,
 | 
						|
  ...
 | 
						|
}: let
 | 
						|
  inherit (lib.options) mkEnableOption mkOption;
 | 
						|
  inherit (lib.types) nullOr package;
 | 
						|
in {
 | 
						|
  options.vim.utility.vim-wakatime = {
 | 
						|
    enable = mkEnableOption ''
 | 
						|
      automatic time tracking and metrics generated from your programming activity [vim-wakatime]
 | 
						|
    '';
 | 
						|
 | 
						|
    cli-package = mkOption {
 | 
						|
      type = nullOr package;
 | 
						|
      default = pkgs.wakatime-cli;
 | 
						|
      example = null;
 | 
						|
      description = ''
 | 
						|
        The package that should be used for wakatime-cli.
 | 
						|
        Set as null to use the default path in {env}`$XDG_DATA_HOME`
 | 
						|
      '';
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |