2023-02-27 08:33:42 -07:00
|
|
|
- [ ] Build standalone `xin` tool for ci / deployment.
|
|
|
|
- [ ] Add smarter checks
|
2023-01-29 06:11:36 -07:00
|
|
|
|
2023-02-27 08:33:42 -07:00
|
|
|
# Example of automated checks from Lily Foster in the NixOS matrix room.
|
|
|
|
```
|
2023-01-29 06:11:36 -07:00
|
|
|
checks = with unstable.lib;
|
|
|
|
foldl' recursiveUpdate { } (mapAttrsToList (name: system: {
|
|
|
|
"${system.pkgs.stdenv.hostPlatform.system}"."${name}" =
|
|
|
|
system.config.system.build.toplevel;
|
|
|
|
}) self.nixosConfigurations);
|
2023-02-27 08:33:42 -07:00
|
|
|
```
|