diff options
Diffstat (limited to 'overlays')
-rw-r--r-- | overlays/neovim.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/overlays/neovim.nix b/overlays/neovim.nix new file mode 100644 index 0000000..6c4b225 --- /dev/null +++ b/overlays/neovim.nix @@ -0,0 +1,6 @@ +self: super: { + # TODO See: https://github.com/NixOS/nixpkgs/pull/214231 + neovim-unwrapped = super.neovim-unwrapped.overrideAttrs (old: { + patches = [ ]; + }); +} |