forked from DGNum/liminix
12 lines
357 B
Nix
12 lines
357 B
Nix
|
{ ... }:
|
||
|
let
|
||
|
# <nixpkgs> is set to the value designated by the nixpkgs input of the
|
||
|
# jobset configuration.
|
||
|
pkgs = (import <nixpkgs> {});
|
||
|
device = import <liminix/devices/qemu>;
|
||
|
liminix-config = <liminix/tests/smoke/configuration.nix>;
|
||
|
liminix = import <liminix> { inherit device liminix-config; };
|
||
|
in {
|
||
|
inherit (liminix.outputs) squashfs;
|
||
|
}
|