Files
Neve/flake.nix
2025-02-06 17:45:39 +02:00

59 lines
1.5 KiB
Nix

{
description = "Neve is a Neovim configuration built with Nixvim, which allows you to use Nix language to manage Neovim plugins/options";
inputs = {
nixvim.url = "github:nix-community/nixvim";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
nixvim,
flake-utils,
...
} @ inputs: let
config = import ./config; # import the module directly
# Enable unfree packages
nixpkgsConfig = {
allowUnfree = true;
};
in
{
nixvimModule = config;
}
// flake-utils.lib.eachDefaultSystem (
system: let
nixvimLib = nixvim.lib.${system};
pkgs = import nixpkgs {
inherit system;
config = nixpkgsConfig;
};
nixvim' = nixvim.legacyPackages.${system};
nvim = nixvim'.makeNixvimWithModule {
inherit pkgs;
module = config;
# You can use `extraSpecialArgs` to pass additional arguments to your module files
extraSpecialArgs = {
inherit self;
};
};
in {
checks = {
# Run `nix flake check .` to verify that your config is not broken
default = nixvimLib.check.mkTestDerivationFromNvim {
inherit nvim;
name = "Neve";
};
};
packages = {
# Lets you run `nix run .` to start nixvim
default = nvim;
};
formatter = pkgs.nixfmt-rfc-style;
}
);
}