From 1be10409768be39b0393c28d4b534f34d1e82b1c Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sat, 18 Jun 2022 15:59:50 +0200 Subject: [PATCH] README: update flake migration example --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index edc6c97..b087fc2 100644 --- a/README.md +++ b/README.md @@ -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" + # ... + ]; }; ```