New checks
This commit is contained in:
parent
545d968d20
commit
893480e3e3
1 changed files with 11 additions and 4 deletions
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
inputs,
|
||||
self,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
|
@ -21,8 +22,14 @@
|
|||
};
|
||||
};
|
||||
|
||||
flake.checks.x86_64-linux =
|
||||
builtins.mapAttrs
|
||||
(_: nc: nc.config.system.build.toplevel)
|
||||
self.nixosConfigurations;
|
||||
flake.checks = let
|
||||
build = _: nc: nc.config.system.build.toplevel;
|
||||
in {
|
||||
x86_64-linux = lib.mapAttrs build {
|
||||
inherit (self.nixosConfigurations) hs thinkpad mothership;
|
||||
};
|
||||
aarch64-linux = {
|
||||
inherit (self.nixosConfigurations) pbp rock5b;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue