0eaa97ffad
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
7 lines
134 B
Nix
7 lines
134 B
Nix
{ lib, ... }: {
|
|
options.nest.foo = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
};
|
|
config.nest.bar = "bar";
|
|
}
|