nixpkgs/nixos/modules/installer/netboot/netboot-base.nix
Wolfgang Walther 1c6af9ba0a
treewide: remove unused with
Auto-fixed by nixf-diagnose.

(cherry picked from commit c283f32d29)
2025-10-05 12:38:28 +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;
}