neovim-flake/flake/packages.nix

33 lines
739 B
Nix
Raw Normal View History

2023-02-10 18:40:13 +01:00
{inputs, ...}: {
perSystem = {
system,
config,
2023-02-10 18:50:20 +01:00
pkgs,
2023-02-10 18:40:13 +01:00
...
2023-02-10 18:50:20 +01:00
}: {
2023-02-10 18:40:13 +01:00
packages = let
docs = import ../docs {
inherit pkgs;
nmdSrc = inputs.nmd;
};
in
{
# Documentation
docs = docs.manual.html;
docs-html = docs.manual.html;
docs-manpages = docs.manPages;
docs-json = docs.options.json;
# nvim configs
nix = config.legacyPackages.neovim-nix;
maximal = config.legacyPackages.neovim-maximal;
2023-02-15 10:05:18 +01:00
default = config.legacyPackages.neovim-nix;
2023-02-10 18:40:13 +01:00
}
// (
if !(builtins.elem system ["aarch64-darwin" "x86_64-darwin"])
then {tidal = config.legacyPackages.neovim-tidal;}
else {}
);
};
}