1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-30 19:54:47 +00:00

Merge pull request #40 from hercules-ci/readme-migrate-flake-improvements

README: update flake migration example
This commit is contained in:
Robert Hensing 2022-06-18 18:34:28 +02:00 committed by GitHub
commit 6dbc77b9c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,12 @@ then slide `mkFlake` between your outputs function head and body,
flake-parts.lib.mkFlake { inherit self; } {
flake = {
# Put your original flake attributes here.
}
};
systems = [
# systems for which you want to build the `perSystem` attributes
"x86_64-linux"
# ...
];
};
```