11 lines
216 B
Nix
11 lines
216 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
# Root for custom options
|
|
options.mySystem = lib.mkOption {
|
|
type = lib.types.attrs; # simple attribute set
|
|
default = {};
|
|
description = "Root for custom mySystem options";
|
|
};
|
|
}
|