lib/tests/modules: Add test case for duplicate option error file location

This commit is contained in:
Robert Hensing 2022-03-07 11:20:30 +01:00
parent e162ed8a14
commit c90844aeb9
2 changed files with 11 additions and 0 deletions

View file

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