9 lines
184 B
Nix
9 lines
184 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
# Declare a submodule container for all mySystem children
|
|
options.mySystem = lib.mkSubmodule {
|
|
description = "Root container for all mySystem options";
|
|
};
|
|
}
|