liminix-fork/ci/basic.nix

12 lines
357 B
Nix
Raw Normal View History

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