2024-04-20 03:57:11 +00:00
|
|
|
# Standalone Installation {#ch-standalone-installation}
|
|
|
|
|
2024-04-27 12:44:37 +00:00
|
|
|
It is possible to install **nvf** without depending on NixOS or home-manager as the parent
|
|
|
|
module system, using the `neovimConfiguration` function exposed by **nvf** extended library.
|
2024-04-20 03:57:11 +00:00
|
|
|
It takes in the configuration as a module, and returns an attribute set as a result.
|
|
|
|
|
|
|
|
```nix
|
|
|
|
{
|
|
|
|
options = "The options that were available to configure";
|
|
|
|
config = "The outputted configuration";
|
|
|
|
pkgs = "The package set used to evaluate the module";
|
|
|
|
neovim = "The built neovim package";
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```{=include=} chapters
|
|
|
|
standalone/nixos.md
|
|
|
|
standalone/home-manager.md
|
|
|
|
```
|