mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
Add lib module for modules to provide helper functions
This commit is contained in:
parent
0c12e29368
commit
8712e1dafc
15
modules/misc/lib.nix
Normal file
15
modules/misc/lib.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
options = {
|
||||
lib = pkgs.lib.mkOption {
|
||||
default = {};
|
||||
|
||||
type = pkgs.lib.types.attrsOf pkgs.lib.types.attrs;
|
||||
|
||||
description = ''
|
||||
This option allows modules to define helper functions, constants, etc.
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
@ -34,6 +34,7 @@
|
||||
./misc/crashdump.nix
|
||||
./misc/ids.nix
|
||||
./misc/locate.nix
|
||||
./misc/lib.nix
|
||||
./misc/nixpkgs.nix
|
||||
./misc/passthru.nix
|
||||
./misc/version.nix
|
||||
|
Loading…
Reference in New Issue
Block a user