9 lines
195 B
Nix
9 lines
195 B
Nix
{ lib, ... }:
|
|
{
|
|
options.mySystem = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.anything;
|
|
default = {};
|
|
description = "Root for custom mySystem options (hierarchical)";
|
|
};
|
|
}
|