mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
40 lines
909 B
Nix
40 lines
909 B
Nix
{
|
|
description = "Neovim config";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs";
|
|
nixvim.url = "github:nix-community/nixvim";
|
|
flake-utils = {
|
|
url = "github:numtide/flake-utils";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, nixvim, flake-utils, ... } @inputs:
|
|
let
|
|
config = import ./config;
|
|
in
|
|
flake-utils.lib.eachDefaultSystem (system: let
|
|
nixvimLib = nixvim.lib.${system};
|
|
pkgs = import nixpkgs {inherit system;};
|
|
nixvim1 = nixvim.legacyPackages.${system};
|
|
nvim = nixvim1.makeNixvimWithModule {
|
|
inherit pkgs;
|
|
module = config;
|
|
extraSpecialArgs = {
|
|
inherit self;
|
|
};
|
|
};
|
|
in {
|
|
checks = {
|
|
default = nixvimLib.check.mkTestDerivationFromNvim {
|
|
inherit nvim;
|
|
name = "nv";
|
|
};
|
|
};
|
|
|
|
packages = {
|
|
default = nvim;
|
|
name = "nv";
|
|
};
|
|
});
|
|
}
|