dev: get vim-wakatime from nixpkgs

This commit is contained in:
NotAShelf 2023-05-10 14:56:49 +03:00
parent cb4ce03b35
commit f0bf3a7ae2
No known key found for this signature in database
GPG key ID: 05A3BD53FEB32B81

View file

@ -1,6 +1,7 @@
{
config,
lib,
pkgs,
...
}:
with lib;
@ -9,7 +10,7 @@ with builtins; let
in {
config = mkIf (cfg.enable) {
vim.startPlugins = [
"vim-wakatime"
pkgs.vimPlugins.vim-wakatime
];
};
}