mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-28 02:34:17 -05:00
13 lines
190 B
Nix
13 lines
190 B
Nix
{ lib, ... }:
|
|
let
|
|
categoryType = lib.types.submoduleWith {
|
|
modules = [ ./category.nix ];
|
|
};
|
|
in
|
|
{
|
|
freeformType = lib.types.attrsOf categoryType;
|
|
imports = [
|
|
./menu.nix
|
|
];
|
|
}
|