1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-25 19:51:06 +01:00
nixvim/flake/packages.nix
Matt Sturgeon 7d17c1b71d flake: remove helpers module arg
Not to be confused with the Nixvim-configuration `helpers` module arg,
remove the flake-parts `helpers` module arg.
2025-11-24 10:47:38 +00:00

21 lines
397 B
Nix

{ self, inputs, ... }:
{
perSystem =
{
config,
inputs',
system,
...
}:
{
# Run the docs server when using `nix run .#docs`
apps.docs.program = config.packages.serve-docs;
packages = import ../docs {
nixvim = self;
inherit system;
inherit (inputs) nixpkgs;
inherit (inputs') nuschtosSearch;
};
};
}