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

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 c7573d910b
commit c4e6beb50d
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
];
};