+10
-1
flake.nix
+10
-1
flake.nix
···
16
};
17
checks =
18
l.mapAttrs
19
+
(_: pkgs: let
20
+
testSystem = l.nixosSystem {
21
+
system = pkgs.system;
22
+
modules = l.attrValues inp.self.nixosModules;
23
+
};
24
+
in {
25
firewall-hetzner-app = import ./firewall/hetzner/app.nix {
26
inherit pkgs;
27
taggedPorts = {
···
35
};
36
id = 1;
37
};
38
+
test-system-app =
39
+
(inp.self.makeApps {
40
+
inherit pkgs; nixosSystem = testSystem;
41
+
}).run;
42
})
43
pkgsInstances;
44
makeApps = import ./makeApps.nix;