diff options
Diffstat (limited to 'examples/system/flake.nix')
-rw-r--r-- | examples/system/flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/system/flake.nix b/examples/system/flake.nix index 32fefa1..021f9db 100644 --- a/examples/system/flake.nix +++ b/examples/system/flake.nix @@ -41,6 +41,6 @@ }; }; - checks = { "x86_64-linux" = { jsonSchema = deploy-rs.lib.x86_64-linux.checkSchema self.deploy; }; }; + checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib; }; } |