added minimal output and changed README install section

This commit is contained in:
2026-07-06 16:48:42 +01:00
parent 43112fbc1f
commit 970da90608
2 changed files with 34 additions and 32 deletions

View File

@@ -60,6 +60,22 @@
runtimePkgs = pkgList;
settings.config_directory = ./.;
};
minimal = inputs.wrappers.wrappers.neovim.wrap {
inherit pkgs;
env = {
"CONFIG_ROOT" = ./.;
"NVIM_APPNAME" = "nvim-voidarc-remote";
};
runtimePkgs = with pkgs; [
lua5_1
tree-sitter
ripgrep
gcc
fzf
luarocks
];
settings.config_directory = ./.;
};
}
);
};