nix-community.nixvim/tests/platforms/darwin.nix
Matt Sturgeon 77c78bd04e
tests/platforms: move out of flake wrappers module
These should be set up in a dedicated test file, owned by
`tests/default.nix`.

Also refactored to use `callTest`.
2025-01-21 10:52:56 +00:00

18 lines
259 B
Nix

{
self,
system,
}:
self.inputs.nix-darwin.lib.darwinSystem {
modules = [
{
nixpkgs.hostPlatform = system;
programs.nixvim = {
enable = true;
};
system.stateVersion = 5;
}
self.nixDarwinModules.nixvim
];
}