1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/wrappers/modules/shared.nix
Matt Sturgeon 574ae92a43
wrappers/modules: move enable to shared.nix
We may end up having additional "shared" options and/or config.
2024-10-22 12:31:56 +01:00

6 lines
79 B
Nix

{ lib, ... }:
{
options = {
enable = lib.mkEnableOption "nixvim";
};
}