14 lines
344 B
Nix
14 lines
344 B
Nix
{
|
|
self,
|
|
pkgs,
|
|
nix-snapshotter,
|
|
...
|
|
}: {
|
|
mkNixNGImage = name:
|
|
(nix-snapshotter.packages.${pkgs.stdenv.system}.nix-snapshotter.buildImage {
|
|
inherit name;
|
|
resolvedByNix = true;
|
|
config.entrypoint = ["${self.nixngConfigurations.${pkgs.stdenv.system}.${name}.config.system.build.toplevel}/init"];
|
|
})
|
|
.image;
|
|
}
|