python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / misc / passthru.nix
blobbeb9d78290377e229a65c00ebaac8d9f79b7cbfa
1 # This module allows you to export something from configuration
2 # Use case: export kernel source expression for ease of configuring
4 { lib, ... }:
7   options = {
8     passthru = lib.mkOption {
9       visible = false;
10       description = lib.mdDoc ''
11         This attribute set will be exported as a system attribute.
12         You can put whatever you want here.
13       '';
14     };
15   };