2023-02-10 17:40:13 +00:00
|
|
|
{inputs, ...}: {
|
|
|
|
perSystem = {
|
|
|
|
config,
|
2023-02-10 17:50:20 +00:00
|
|
|
pkgs,
|
2024-07-11 22:49:44 +00:00
|
|
|
lib,
|
2023-02-10 17:40:13 +00:00
|
|
|
...
|
2023-03-31 02:26:46 +00:00
|
|
|
}: let
|
2024-07-11 22:49:44 +00:00
|
|
|
docs = import ../docs {inherit pkgs inputs lib;};
|
2023-03-31 02:26:46 +00:00
|
|
|
in {
|
2024-05-06 19:30:06 +00:00
|
|
|
packages = {
|
2024-09-22 19:52:10 +00:00
|
|
|
inherit (docs.manual) htmlOpenTool;
|
2024-05-06 19:30:06 +00:00
|
|
|
# Documentation
|
|
|
|
docs = docs.manual.html;
|
|
|
|
docs-html = docs.manual.html;
|
|
|
|
docs-manpages = docs.manPages;
|
|
|
|
docs-json = docs.options.json;
|
2023-02-10 17:40:13 +00:00
|
|
|
|
2024-05-06 19:30:06 +00:00
|
|
|
# Build and open the built manual in your system browser
|
|
|
|
docs-html-wrapped = pkgs.writeScriptBin "docs-html-wrapped" ''
|
|
|
|
#!${pkgs.stdenv.shell}
|
|
|
|
# use xdg-open to open the docs in the browser
|
|
|
|
${pkgs.xdg_utils}/bin/xdg-open ${docs.manual.html}
|
|
|
|
'';
|
2023-10-03 19:08:02 +00:00
|
|
|
|
2024-05-06 19:30:06 +00:00
|
|
|
# Exposed neovim configurations
|
|
|
|
nix = config.legacyPackages.neovim-nix;
|
|
|
|
maximal = config.legacyPackages.neovim-maximal;
|
|
|
|
default = config.legacyPackages.neovim-nix;
|
2023-10-20 13:28:35 +00:00
|
|
|
|
2024-05-06 19:30:06 +00:00
|
|
|
# Published docker images
|
|
|
|
docker-nix = let
|
|
|
|
inherit (pkgs) bash gitFull buildEnv dockerTools;
|
|
|
|
inherit (config.legacyPackages) neovim-nix;
|
|
|
|
in
|
|
|
|
dockerTools.buildImage {
|
|
|
|
name = "nvf";
|
|
|
|
tag = "latest";
|
2023-10-20 13:28:35 +00:00
|
|
|
|
2024-05-06 19:30:06 +00:00
|
|
|
copyToRoot = buildEnv {
|
|
|
|
name = "neovim-root";
|
|
|
|
pathsToLink = ["/bin"];
|
|
|
|
paths = [
|
|
|
|
neovim-nix
|
|
|
|
gitFull
|
|
|
|
bash
|
|
|
|
];
|
|
|
|
};
|
2023-10-20 13:28:35 +00:00
|
|
|
|
2024-05-06 19:30:06 +00:00
|
|
|
config = {
|
|
|
|
Cmd = ["${neovim-nix}/bin/nvim"];
|
|
|
|
WorkingDir = "/home/neovim/demo";
|
|
|
|
Volumes = {"/home/neovim/demo" = {};};
|
2023-10-20 13:28:35 +00:00
|
|
|
};
|
2024-05-06 19:30:06 +00:00
|
|
|
};
|
|
|
|
};
|
2023-02-10 17:40:13 +00:00
|
|
|
};
|
|
|
|
}
|