about summary refs log tree commit diff
path: root/overlays
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-03-05 03:03:34 +0900
committersefidel <contact@sefidel.net>2023-03-05 03:03:34 +0900
commitec913c7d067fe1a7e2437d10571a2e0eb00ef941 (patch)
treef0e490599ac70b62ce313945cc37426316873119 /overlays
parentc580225be681c9953bc78bb53f4144a774440a5e (diff)
downloadnixrc-ec913c7d067fe1a7e2437d10571a2e0eb00ef941.tar.gz
nixrc-ec913c7d067fe1a7e2437d10571a2e0eb00ef941.zip
fix(home/base): use local overlay for neovim fix
Diffstat (limited to 'overlays')
-rw-r--r--overlays/neovim.nix6
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 = [ ];
+  });
+}