nixpkgs/nixos/modules/installer/netboot/netboot-base.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
298 B
Nix
Raw Normal View History

# This module contains the basic configuration for building netboot
# images
{ lib, ... }:
with lib;
{
imports = [
./netboot.nix
# Profiles of this basic netboot media
../../profiles/base.nix
../../profiles/installation-device.nix
];
hardware.enableAllHardware = true;
}