mirror of
https://github.com/oddlama/nixos-extra-modules.git
synced 2025-10-10 13:50:39 +02:00
9 lines
191 B
Nix
9 lines
191 B
Nix
{ lib, options, ... }:
|
|
{
|
|
options._globalsDefs = lib.mkOption {
|
|
type = lib.types.unspecified;
|
|
default = options.globals.definitions;
|
|
readOnly = true;
|
|
internal = true;
|
|
};
|
|
}
|