nvim.nix/flake.nix

52 lines
1.3 KiB
Nix
Raw Normal View History

2024-08-04 21:19:37 +08:00
{
description = "My personal neovim configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixvim.url = "github:nix-community/nixvim";
flake-parts.url = "github:hercules-ci/flake-parts";
};
2024-08-08 09:58:48 +08:00
outputs = {
nixvim,
flake-parts,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
2024-08-04 21:19:37 +08:00
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
2024-08-08 09:58:48 +08:00
perSystem = {
pkgs,
system,
...
}: let
nixvimLib = nixvim.lib.${system};
nixvim' = nixvim.legacyPackages.${system};
nixvimModule = {
inherit pkgs;
module = import ./config; # import the module directly
# You can use `extraSpecialArgs` to pass additional arguments to your module files
extraSpecialArgs = {
# inherit (inputs) foo;
2024-08-04 21:19:37 +08:00
};
2024-08-08 09:58:48 +08:00
};
nvim = nixvim'.makeNixvimWithModule nixvimModule;
in {
checks = {
# Run `nix flake check .` to verify that your config is not broken
default = nixvimLib.check.mkTestDerivationFromNixvimModule nixvimModule;
};
2024-08-04 21:19:37 +08:00
2024-08-08 09:58:48 +08:00
packages = {
# Lets you run `nix run .` to start nixvim
default = nvim;
2024-08-04 21:19:37 +08:00
};
2024-08-08 09:58:48 +08:00
};
2024-08-04 21:19:37 +08:00
};
}