liminix-fork/ci/basic.nix

11 lines
282 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>;
2023-01-29 10:11:20 +01:00
liminix = import <liminix> { inherit device; };
2023-01-29 00:18:28 +01:00
in {
inherit (liminix.outputs) squashfs;
}