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