This commit is contained in:
Andrea Ciceri 2024-01-25 22:20:37 +01:00
parent 97237f3362
commit 63161538fe
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg

View file

@ -22,14 +22,14 @@
};
};
# flake.checks = let
# build = _: nc: nc.config.system.build.toplevel;
# in {
# x86_64-linux = lib.mapAttrs build {
# inherit (self.nixosConfigurations) picard;
# };
# aarch64-linux = {
# inherit (self.nixosConfigurations) sisko; #pbp;
# };
# };
flake.checks = let
build = _: nc: nc.config.system.build.toplevel;
in {
x86_64-linux = lib.mapAttrs build {
inherit (self.nixosConfigurations) picard;
};
aarch64-linux = lib.mapAttrs build {
inherit (self.nixosConfigurations) sisko; #pbp;
};
};
}