nix-community.nixvim/wrappers/modules/nixos.nix
Matt Sturgeon b076f006c6
wrappers: add meta.wrappers options to wrappers
Allows the docs to be a little less hard-coded.

Lays the groundwork for splitting up the platform-specific option docs
on a per-page basis.
2024-10-22 14:15:58 +01:00

12 lines
191 B
Nix

{ lib, ... }:
{
options = {
defaultEditor = lib.mkEnableOption "nixvim as the default editor";
};
imports = [ ./shared.nix ];
config = {
meta.wrapper.name = "NixOS";
};
}