🔨 add addSys from ˈt͡sɛːzaɐ
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 11m56s

This commit is contained in:
Ingolf Wagner 2024-11-28 13:47:17 +07:00
parent c729802b6e
commit 40854dd628
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B

View file

@ -0,0 +1,30 @@
# buid all system locally is part of `nix flake check` with this flake parrt.
# todo make this an application : `nix run .#buildAllNixosConfigurations`
{ inputs, self, ... }:
{
perSystem =
{
pkgs,
system,
lib,
...
}:
with lib;
{
checks =
let
all = attrNames self.nixosConfigurations;
linkFor = sys: "ln -s ${self.nixosConfigurations.${sys}.config.system.build.toplevel} $out/${sys}";
links = filt: builtins.concatStringsSep "\n" (map linkFor (filter (name: filt name) all));
toplevels =
filt:
pkgs.runCommandLocal "toplevels" { } ''
mkdir $out
${links filt}
'';
in
{
buildAllNixosConfigurations = toplevels (_: true);
};
};
}