1# This module contains the basic configuration for building netboot
2# images
3
4{ config, lib, pkgs, ... }:
5
6with lib;
7
8{
9 imports =
10 [ ./netboot.nix
11
12 # Profiles of this basic netboot media
13 ../../profiles/all-hardware.nix
14 ../../profiles/base.nix
15 ../../profiles/installation-device.nix
16 ];
17
18 # Allow the user to log in as root without a password.
19 users.extraUsers.root.initialHashedPassword = "";
20}