My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/nixos/modules/misc/passthru.nix

16 lines
375 B

# 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.
'';
};
};
}