10 lines
219 B
Nix
10 lines
219 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.mySystem = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.value; # allows nested options
|
|
default = {};
|
|
description = "Root container for all my custom system options";
|
|
};
|
|
}
|