10 lines
226 B
Nix
10 lines
226 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.mySystem = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.attrsOf lib.types.any;
|
|
default = {};
|
|
description = "Root container for custom mySystem options (desktop, apps, etc.)";
|
|
};
|
|
}
|