2016-04-08 14:53:27 +01:00
|
|
|
# This module contains the basic configuration for building netboot
|
|
|
|
# images
|
|
|
|
|
2018-07-20 21:56:59 +01:00
|
|
|
{ lib, ... }:
|
2016-04-08 14:53:27 +01:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ ./netboot.nix
|
|
|
|
|
|
|
|
# Profiles of this basic netboot media
|
|
|
|
../../profiles/all-hardware.nix
|
|
|
|
../../profiles/base.nix
|
|
|
|
../../profiles/installation-device.nix
|
|
|
|
];
|
|
|
|
}
|