vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / misc / passthru.nix
blob4e99631fdd85c5cff07ba8413194b4c8bc39d0bc
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 = ''
11         This attribute set will be exported as a system attribute.
12         You can put whatever you want here.
13       '';
14     };
15   };