about summary refs log tree commit diff
path: root/nixos/modules/installer/netboot/netboot-minimal.nix
blob: 8ad6234edc775eb8e293359201c371f2f0c4acfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# This module defines a small netboot environment.

{ config, lib, ... }:

{
  imports =
    [ ./netboot-base.nix
      ../../profiles/minimal.nix
    ];
}