From 78fc64e1361a040c39f5320831bc86183546baa2 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Sun, 16 Aug 2026 15:40:12 +0800 Subject: [PATCH] fix(neovim): disable nixvim manpage on broken nixpkgs pin --- home/base/core/editors/neovim/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home/base/core/editors/neovim/default.nix b/home/base/core/editors/neovim/default.nix index 82e7c10d..c64c334e 100644 --- a/home/base/core/editors/neovim/default.nix +++ b/home/base/core/editors/neovim/default.nix @@ -16,7 +16,9 @@ }; programs.nixvim = { - enable = true; + # temporarily disabled: nixvim's manpage pulls nixos-render-docs from nixpkgs, + # which is broken (patch fails to apply) on the current nixpkgs pin + enable = false; clipboard.providers.wl-copy.enable = pkgs.stdenv.isLinux;