mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
These should be set up in a dedicated test file, owned by `tests/default.nix`. Also refactored to use `callTest`.
18 lines
259 B
Nix
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
|
|
];
|
|
}
|