diff options
author | notgne2 | 2020-10-26 12:27:20 -0700 |
---|---|---|
committer | notgne2 | 2020-10-26 12:27:20 -0700 |
commit | 7ec0bc21cd3678e39270d7ea59bccaefa288abfa (patch) | |
tree | ba77cebea43ebc881e1a462ad1208227e15e677e /examples/system/flake.nix | |
parent | 426fb3c489dcbb4ccbf98a3ab6a7fe25e71b95ca (diff) |
Update example flakes
Diffstat (limited to '')
-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; }; } |