nixpkgs/lib/tests/modules/declare-bare-submodule-deep-option-duplicate.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
144 B
Nix
Raw Normal View History

{ lib, ... }:
let
inherit (lib) mkOption types;
in
{
options.bare-submodule.deep = mkOption {
type = types.int;
default = 2;
};
}