9 lines
173 B
Nix
9 lines
173 B
Nix
{ lib, ... }:
|
|
{
|
|
options.mySystem = lib.mkOption {
|
|
type = lib.types.attrs;
|
|
default = {};
|
|
description = "Root for custom mySystem options (placeholder)";
|
|
};
|
|
}
|