depot/third_party/nixpkgs/nixos/modules/misc/passthru.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

16 lines
385 B
Nix

# This module allows you to export something from configuration
# Use case: export kernel source expression for ease of configuring
{ lib, ... }:
{
options = {
passthru = lib.mkOption {
visible = false;
description = lib.mdDoc ''
This attribute set will be exported as a system attribute.
You can put whatever you want here.
'';
};
};
}