The Nix store squashfs is stored inside the initrd instead of separately (cherry picked from commit 976fd407796877b538c470d3a5253ad3e1f7bc68) Signed-off-by: Domen Kožar <domen@dev.si>
		
			
				
	
	
		
			21 lines
		
	
	
		
			430 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			430 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# 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.extraUsers.root.initialHashedPassword = "";
 | 
						|
}
 |