installer: simple PXE bootable NixOS installer

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>
This commit is contained in:
Nahum Shalman
2016-04-29 10:42:39 +01:00
committed by Domen Kožar
parent ecfc523d32
commit 83c0aca062
5 changed files with 173 additions and 2 deletions
@@ -0,0 +1,10 @@
# This module defines a small netboot environment.
{ config, lib, ... }:
{
imports =
[ ./netboot-base.nix
../../profiles/minimal.nix
];
}