mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
13 lines
175 B
Nix
13 lines
175 B
Nix
![]() |
{ lib, ... }:
|
||
|
let
|
||
|
inherit (lib) mkOption;
|
||
|
in
|
||
|
{
|
||
|
options.sub = lib.mkOption {
|
||
|
type = lib.types.submodule {
|
||
|
wrong2 = mkOption { };
|
||
|
};
|
||
|
default = { };
|
||
|
};
|
||
|
}
|