mynixos-extra-modules/modules/globals.nix
2025-02-07 22:41:33 +01:00

9 lines
191 B
Nix

{ lib, options, ... }:
{
options._globalsDefs = lib.mkOption {
type = lib.types.unspecified;
default = options.globals.definitions;
readOnly = true;
internal = true;
};
}