chore: add CI and fix attic nixlet

This commit is contained in:
technofab 2024-03-09 15:32:47 +01:00
parent 94cd725a82
commit 203c487a0b
5 changed files with 486 additions and 8 deletions

23
ci.nix Normal file
View file

@ -0,0 +1,23 @@
{
pkgs,
inputs',
...
}: {
ci = {
stages = ["check"];
default = {
retry = {
max = 2;
when = "runner_system_failure";
};
};
jobs = {
"check" = {
stage = "check";
script = [
"nix flake check --impure"
];
};
};
};
}