Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
16 lines
375 B
Nix
16 lines
375 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 = ''
|
|
This attribute set will be exported as a system attribute.
|
|
You can put whatever you want here.
|
|
'';
|
|
};
|
|
};
|
|
}
|