summary refs log tree commit diff
path: root/lib/tests/modules/freeform-nested.nix
blob: 5da27f5a8b4f98500014590d4a34826018616c65 (plain) (blame)
1
2
3
4
5
6
7
{ lib, ... }: {
  options.nest.foo = lib.mkOption {
    type = lib.types.bool;
    default = false;
  };
  config.nest.bar = "bar";
}