1
1
Fork 1
mirror of https://github.com/oddlama/nixos-extra-modules.git synced 2025-10-10 13:50:39 +02:00
oddlama_nixos-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;
};
}