mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
83c0aca062
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>
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
|
|
];
|
|
}
|