mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-26 20:21:03 +01:00
- Remove the `makeNixvimWithModule` module arg. - Move standalone wrapper definitions to `wrappers.nix` - Move `nixvimConfiguration` alias to `nixvim-configurations.nix`
12 lines
248 B
Nix
12 lines
248 B
Nix
{ self, ... }:
|
|
{
|
|
perSystem =
|
|
{ config, system, ... }:
|
|
{
|
|
nixvimConfigurations.default = self.lib.evalNixvim {
|
|
inherit system;
|
|
};
|
|
|
|
legacyPackages.nixvimConfiguration = config.nixvimConfigurations.default;
|
|
};
|
|
}
|