mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
11 lines
156 B
Nix
11 lines
156 B
Nix
|
# This module defines a small netboot environment.
|
||
|
|
||
|
{ config, lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[ ./netboot-base.nix
|
||
|
../../profiles/minimal.nix
|
||
|
];
|
||
|
}
|