]>
Commit | Line | Data |
---|---|---|
69619e0b | 1 | { |
7bd3b5bc | 2 | inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable"; |
69619e0b SW |
3 | outputs = { self, nixpkgs, }: |
4 | let | |
5 | inherit (nixpkgs.lib) genAttrs; | |
6 | ||
7 | systems = nixpkgs.lib.systems.supported.tier1; | |
8 | ||
9 | forAllSystems = genAttrs systems; | |
10 | ||
11 | in { | |
12 | nixosModules = { | |
13 | qemu-vm-isolation = import ./modules/qemu-vm-isolation.nix; | |
14 | }; | |
15 | checks = forAllSystems (system: { | |
16 | mount-grep = nixpkgs.legacyPackages."${system}".nixosTest | |
17 | (import ./checks/mount-grep.nix); | |
18 | }); | |
19 | }; | |
20 | } |