chore(nvim): override theme version attr
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
4044403520
commit
596f6a22f6
1 changed files with 5 additions and 2 deletions
|
@ -5,6 +5,8 @@ self: {
|
|||
...
|
||||
}: let
|
||||
inherit (self.inputs) nvim-theme-src;
|
||||
inherit (self.lib.${pkgs.system}) mkVersion;
|
||||
|
||||
inherit (lib) attrValues fileContents mkIf;
|
||||
|
||||
cfg = config.programs.neovim;
|
||||
|
@ -19,9 +21,10 @@ in {
|
|||
|
||||
plugins = [
|
||||
{
|
||||
plugin = pkgs.vimPlugins.dracula-nvim.overrideAttrs {
|
||||
plugin = pkgs.vimPlugins.dracula-nvim.overrideAttrs (o: {
|
||||
name = "vimplugin-${o.pname}-${mkVersion nvim-theme-src}";
|
||||
src = nvim-theme-src;
|
||||
};
|
||||
});
|
||||
type = "lua";
|
||||
config =
|
||||
# lua
|
||||
|
|
Loading…
Reference in a new issue