nixpkgs/nixos/modules/installer/netboot/netboot-base.nix
Wolfgang Walther c283f32d29
treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

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;
}