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
/
installer
/
netboot
/
netboot-base.nix
blob
7e66a49c7391944f4421a5015954946201412d95
1
# This module contains the basic configuration for building netboot
2
# images
3
4
{ lib, ... }:
5
6
with lib;
7
8
{
9
imports =
10
[ ./netboot.nix
11
12
# Profiles of this basic netboot media
13
../../profiles/all-hardware.nix
14
../../profiles/base.nix
15
../../profiles/installation-device.nix
16
];
17
}