forked from dan/liminix
1
0
Fork 0
liminix/ci/basic.nix

12 lines
364 B
Nix
Raw Normal View History

2023-01-28 23:18:28 +00:00
{ ... }:
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 = import <liminix/tests/smoke/configuration.nix>;
liminix = import <liminix> { inherit device liminix-config; };
2023-01-28 23:18:28 +00:00
in {
inherit (liminix.outputs) squashfs;
}