2024-12-21 13:40:16 +00:00
|
|
|
{
|
2025-03-05 20:44:36 +00:00
|
|
|
self,
|
2024-12-21 13:40:16 +00:00
|
|
|
inputs,
|
|
|
|
helpers,
|
|
|
|
...
|
|
|
|
}:
|
2023-12-06 13:09:26 +01:00
|
|
|
{
|
|
|
|
perSystem =
|
2024-07-19 20:14:20 +02:00
|
|
|
{
|
2025-05-21 17:27:28 +01:00
|
|
|
config,
|
2024-07-19 20:14:20 +02:00
|
|
|
inputs',
|
2024-09-12 12:55:33 +01:00
|
|
|
system,
|
2024-07-19 20:14:20 +02:00
|
|
|
...
|
|
|
|
}:
|
2024-01-12 23:22:03 +01:00
|
|
|
{
|
2025-05-21 17:27:28 +01:00
|
|
|
# Run the docs server when using `nix run .#docs`
|
|
|
|
apps.docs.program = config.packages.serve-docs;
|
|
|
|
|
2024-06-05 21:59:34 +02:00
|
|
|
packages = import ../docs {
|
2025-03-05 20:44:36 +00:00
|
|
|
nixvim = self;
|
2024-12-21 13:40:16 +00:00
|
|
|
inherit helpers;
|
2024-09-12 12:55:33 +01:00
|
|
|
inherit system;
|
|
|
|
inherit (inputs) nixpkgs;
|
2024-07-19 20:14:20 +02:00
|
|
|
inherit (inputs') nuschtosSearch;
|
2024-06-05 21:59:34 +02:00
|
|
|
};
|
2023-12-06 13:09:26 +01:00
|
|
|
};
|
|
|
|
}
|