fix: disable combinePlugins due to upstream issue
All checks were successful
/ check (push) Successful in 8s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 14s
/ build-vm (push) Successful in 1s
/ report-size (push) Successful in 4s

It is experimental (and thus expected to break). It was working fine but
now I ran into https://github.com/nix-community/nixvim/issues/3140
This commit is contained in:
Jalil David Salamé Messina 2025-04-09 17:41:12 +02:00
parent 7f4750c0fa
commit 486ae7713e
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -23,7 +23,8 @@
inherit system;
modules = [
self.nixvimModules.standalone
{ performance.combinePlugins.enable = true; }
# FIXME: borked due to https://github.com/nix-community/nixvim/issues/3140
# { performance.combinePlugins.enable = true; }
extraConfig
];
};