summary refs log tree commit diff
path: root/lib/tests/modules/declare-bare-submodule.nix
blob: 298c71e3ca0bb9df5d8eaf31e13d91472e5faf3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, ... }:
let
  inherit (lib) mkOption types;
in
{
  options.bare-submodule = mkOption {
    type = types.submoduleWith {
      modules = [ ];
    };
    default = {};
  };
}