93 lines
2.6 KiB
Nix
93 lines
2.6 KiB
Nix
{
|
|
description = "Neovim derivation";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
gen-luarc.url = "github:mrcjkb/nix-gen-luarc-json";
|
|
rust-overlay = {
|
|
url = "github:oxalica/rust-overlay";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# Add bleeding-edge plugins here.
|
|
# They can be updated with `nix flake update` (make sure to commit the generated flake.lock)
|
|
hlargs-nvim = {
|
|
url = "github:m-demare/hlargs.nvim";
|
|
flake = false;
|
|
};
|
|
nvim-yati = {
|
|
url = "github:yioneko/nvim-yati";
|
|
flake = false;
|
|
};
|
|
yaml-nvim = {
|
|
url = "github:cuducos/yaml.nvim";
|
|
flake = false;
|
|
};
|
|
|
|
cmp-diag-codes = {
|
|
url = "github:JMarkin/cmp-diag-codes";
|
|
flake = false;
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
inputs @ { self
|
|
, nixpkgs
|
|
, flake-utils
|
|
, rust-overlay
|
|
, ...
|
|
}:
|
|
let
|
|
systems = builtins.attrNames nixpkgs.legacyPackages;
|
|
|
|
# This is where the Neovim derivation is built.
|
|
neovim-overlay = import ./nix/neovim-overlay.nix { inherit inputs; };
|
|
in
|
|
flake-utils.lib.eachSystem systems
|
|
(system:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
overlays = [
|
|
(import rust-overlay)
|
|
# Import the overlay, so that the final Neovim derivation(s) can be accessed via pkgs.<nvim-pkg>
|
|
neovim-overlay
|
|
# This adds a function can be used to generate a .luarc.json
|
|
# containing the Neovim API all plugins in the workspace directory.
|
|
# The generated file can be symlinked in the devShell's shellHook.
|
|
inputs.gen-luarc.overlays.default
|
|
];
|
|
};
|
|
shell = pkgs.mkShell {
|
|
name = "nvim-devShell";
|
|
buildInputs = with pkgs; [
|
|
# Tools for Lua and Nix development, useful for editing files in this repo
|
|
lua-language-server
|
|
nixd
|
|
stylua
|
|
luajitPackages.luacheck
|
|
nvim-dev
|
|
];
|
|
shellHook = ''
|
|
# symlink the .luarc.json generated in the overlay
|
|
ln -fs ${pkgs.nvim-luarc-json} .luarc.json
|
|
# allow quick iteration of lua configs
|
|
ln -Tfns $PWD/nvim ~/.config/nvim-dev
|
|
'';
|
|
};
|
|
in
|
|
{
|
|
packages = rec {
|
|
default = nvim;
|
|
nvim = pkgs.nvim-pkg;
|
|
};
|
|
devShells = {
|
|
default = shell;
|
|
};
|
|
})
|
|
// {
|
|
# You can add this overlay to your NixOS configuration
|
|
overlays.default = neovim-overlay;
|
|
};
|
|
}
|