mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
19 lines
371 B
Nix
19 lines
371 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (lib) mkOption types;
|
|
in
|
|
{
|
|
options.bare-submodule = mkOption {
|
|
type = types.submoduleWith {
|
|
shorthandOnlyDefinesConfig = config.shorthandOnlyDefinesConfig;
|
|
modules = [
|
|
{
|
|
options.nested = mkOption {
|
|
type = types.int;
|
|
default = 1;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|