mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +01:00
17 lines
287 B
Nix
17 lines
287 B
Nix
# This module contains the basic configuration for building netboot
|
|
# images
|
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./netboot.nix
|
|
|
|
# Profiles of this basic netboot media
|
|
../../profiles/base.nix
|
|
../../profiles/installation-device.nix
|
|
];
|
|
|
|
hardware.enableAllHardware = true;
|
|
}
|