mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-25 11:49:40 +01:00
Not to be confused with the Nixvim-configuration `helpers` module arg, remove the flake-parts `helpers` module arg.
10 lines
159 B
Nix
10 lines
159 B
Nix
{ self, ... }:
|
|
{
|
|
perSystem =
|
|
{ system, ... }:
|
|
{
|
|
nixvimConfigurations.default = self.lib.evalNixvim {
|
|
inherit system;
|
|
};
|
|
};
|
|
}
|