2024-04-27 12:44:37 +00:00
|
|
|
# Standalone Installation on Home-Manager {#ch-standalone-hm}
|
2024-04-20 03:57:11 +00:00
|
|
|
|
2024-04-27 12:44:37 +00:00
|
|
|
Your built Neoevim configuration can be exposed as a flake output to make it
|
|
|
|
easier to share across machines, repositories and so on. Or it can be added to
|
|
|
|
your system packages to make it available across your system.
|
|
|
|
|
|
|
|
The following is an example installation of `nvf` as a standalone package with
|
|
|
|
the default theme enabled. You may use other options inside `config.vim` in
|
|
|
|
`configModule`, but this example will not cover that.
|
2024-04-20 03:57:11 +00:00
|
|
|
|
|
|
|
```nix
|
|
|
|
{
|
2024-04-27 12:44:37 +00:00
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
nvf.url = "github:notashelf/nvf";
|
2024-04-20 03:57:11 +00:00
|
|
|
};
|
|
|
|
|
2024-04-27 12:44:37 +00:00
|
|
|
outputs = {nixpkgs, home-manager, nvf, ...}: let
|
2024-04-20 03:57:11 +00:00
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
configModule = {
|
2024-04-27 12:44:37 +00:00
|
|
|
# Add any custom options (and do feel free to upstream them!)
|
|
|
|
# options = { ... };
|
2024-04-20 03:57:11 +00:00
|
|
|
|
|
|
|
config.vim = {
|
|
|
|
theme.enable = true;
|
2024-04-27 12:44:37 +00:00
|
|
|
# and more options as you see fit...
|
2024-04-20 03:57:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-04-27 12:44:37 +00:00
|
|
|
customNeovim = nvf.lib.neovimConfiguration {
|
2024-04-20 03:57:11 +00:00
|
|
|
modules = [configModule];
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
|
|
|
in {
|
2024-04-27 12:44:37 +00:00
|
|
|
# this will make the package available as a flake input
|
|
|
|
packages.${system}.my-neovim = customNeovim.neovim;
|
|
|
|
|
|
|
|
# this is an example home-manager configuration
|
|
|
|
# using the built neovim package
|
2024-04-20 03:57:11 +00:00
|
|
|
homeConfigurations = {
|
2024-04-27 12:44:37 +00:00
|
|
|
"your-username@your-hostname" = home-manager.lib.homeManagerConfiguration {
|
|
|
|
# ...
|
|
|
|
modules = [
|
|
|
|
./home.nix
|
|
|
|
|
|
|
|
# this will make wrapped neovim available in your system packages
|
|
|
|
{environment.systemPackages = [customNeovim.neovim];}
|
|
|
|
];
|
|
|
|
# ...
|
2024-04-20 03:57:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
```
|