markdown-preview.nvim runs yarn install with native Node.js binaries that crash under QEMU aarch64 emulation. The plugin is also useless on headless servers (requires a browser). Removing it allows the Pi build to succeed in CI again. Re-enabled Pi build and SD image jobs in both ci.yml and deploy.yml.
16 lines
245 B
Nix
16 lines
245 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./cmp.nix
|
|
./lsp.nix
|
|
./lualine.nix
|
|
./telescope.nix
|
|
# ./treesitter.nix # HOTFIX: does not build
|
|
./trouble.nix
|
|
];
|
|
|
|
config.programs.nixvim.plugins = {
|
|
web-devicons.enable = true;
|
|
};
|
|
}
|