mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
18 lines
306 B
Nix
18 lines
306 B
Nix
# This module contains the basic configuration for building netboot
|
|
# images
|
|
|
|
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports =
|
|
[ ./netboot.nix
|
|
|
|
# Profiles of this basic netboot media
|
|
../../profiles/all-hardware.nix
|
|
../../profiles/base.nix
|
|
../../profiles/installation-device.nix
|
|
];
|
|
}
|