diff --git a/README.md b/README.md index 78c6f0e..77f9227 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,11 @@ flakes. ### `defaultSystems -> []` A list of all the systems supported by the nixpkgs project. +Useful if you want add additional platforms: + +```nix +eachSystem (defaultSystems ++ ["armv7l-linux"]) (system: { hello = 42; }) +``` ### `eachSystem -> [] -> ( -> attrs)`