libnvidia-container: include binaries from driver package (#372320)
[NixPkgs.git] / nixos / modules / system / build.nix
blobf48f2850fc08e43afbfef2e147c350358cee5faa
1 { lib, ... }:
2 let
3   inherit (lib) mkOption types;
4 in
6   options = {
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           {
16             freeformType = with types; lazyAttrsOf (uniq unspecified);
17           }
18         ];
19       };
20     };
22   };