1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-25 11:49:40 +01:00
nixvim/flake/nixvim-configurations.nix
Matt Sturgeon 7d17c1b71d flake: remove helpers module arg
Not to be confused with the Nixvim-configuration `helpers` module arg,
remove the flake-parts `helpers` module arg.
2025-11-24 10:47:38 +00:00

10 lines
159 B
Nix

{ self, ... }:
{
perSystem =
{ system, ... }:
{
nixvimConfigurations.default = self.lib.evalNixvim {
inherit system;
};
};
}