repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vuls: init at 0.27.0
[NixPkgs.git]
/
nixos
/
modules
/
system
/
build.nix
blob
58dc3f0d41134872f9fcbe54e3b34a7dc1cf4c9d
1
{ lib, ... }:
2
let
3
inherit (lib) mkOption types;
4
in
5
{
6
options = {
7
8
system.build = mkOption {
9
default = {};
10
description = ''
11
Attribute set of derivations used to set up the system.
12
'';
13
type = types.submoduleWith {
14
modules = [{
15
freeformType = with types; lazyAttrsOf (uniq unspecified);
16
}];
17
};
18
};
19
20
};
21
}