2 outputs = { self, nixpkgs, }:
4 inherit (nixpkgs.lib) genAttrs;
6 systems = nixpkgs.lib.systems.supported.tier1;
8 forAllSystems = genAttrs systems;
12 qemu-vm-isolation = import ./modules/qemu-vm-isolation.nix;
14 checks = forAllSystems (system: {
15 mount-grep = nixpkgs.legacyPackages."${system}".nixosTest
16 (import ./checks/mount-grep.nix);