summary refs log tree commit diff
path: root/nixos/modules/installer/netboot/netboot-base.nix
blob: 5e8f7f93d92a9c06fee08ec1aa04849fe19ddce5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This module contains the basic configuration for building netboot
# images

{ config, lib, pkgs, ... }:

with lib;

{
  imports =
    [ ./netboot.nix

      # Profiles of this basic netboot media
      ../../profiles/all-hardware.nix
      ../../profiles/base.nix
      ../../profiles/installation-device.nix
    ];

  # Allow the user to log in as root without a password.
  users.users.root.initialHashedPassword = "";
}