1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-14 04:51:11 +01:00

wrappers: expose platform wrapper modules via build.*Module options

Expose the platform wrapper modules as the Nixvim configuration options
`build.nixosModule`, `build.homeModule`, and `build.nixDarwinModule`.
This makes it possible to reuse a single Nixvim configuration across
NixOS, Home Manager, and nix-darwin without re-importing modules into
`programs.nixvim` manually.

Evaluating these wrapper modules requires a "bare" Nixvim configuration;
one that does not define `pkgs` or `nixpkgs.hostPlatform`. Such a
configuration would normally fail to evaluate, but disabling
`_module.check` provides a sufficiently lazy evaluation to access the
wrapper options.

To prevent the `_module.check = false` module from leaking into user
configs, it has a unique module key and gets disabled inside the wrapper
modules (`wrappers/_shared.nix`).
This commit is contained in:
Matt Sturgeon 2025-12-03 08:28:35 +00:00
parent 05c57f2e74
commit 53b702b367
7 changed files with 110 additions and 44 deletions

View file

@ -24,5 +24,6 @@
./output.nix
./performance.nix
./plugins.nix
./wrappers.nix
];
}