Files
nvim/flake.nix
T
palkx 5d1c7ed0fe
build-flake / Build flake (push) Successful in 5m30s
build-flake / Release a new version (push) Successful in 12s
chore(flake): update to nixos2605
2026-06-05 13:36:45 +03:00

55 lines
1.4 KiB
Nix

{
description = "Neovim configuration, declaratively written using nix";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
nixvim.url = "github:nix-community/nixvim/nixos-26.05";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
};
outputs =
{
nixvim,
flake-parts,
...
}@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = import inputs.systems;
perSystem =
{
pkgs,
system,
...
}:
let
nixvimLib = nixvim.lib.${system};
nixvimPkgs = 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;
};
};
nvim = nixvimPkgs.makeNixvimWithModule nixvimModule;
in
{
checks = {
# Run `nix flake check .` to verify that your config is not broken
default = nixvimLib.check.mkTestDerivationFromNixvimModule nixvimModule;
};
packages = {
# Lets you run `nix run .` to start nixvim
default = nvim;
};
};
};
}