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