1# This module allows you to export something from configuration
2# Use case: export kernel source expression for ease of configuring
3
4{ lib, ... }:
5
6{
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 };
16}