1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-15 17:50:53 +00:00

README: update flake migration example

This commit is contained in:
Robert Hensing 2022-06-18 15:59:50 +02:00 committed by GitHub
parent 6ac93cfc7f
commit 1be1040976
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-parts.lib.mkFlake { inherit self; } {
flake = { flake = {
# Put your original flake attributes here. # Put your original flake attributes here.
} };
systems = [
# systems for which you want to build the `perSystem` attributes
"x86_64-linux"
# ...
];
}; };
``` ```