Is there a simple Flake example which combines the haskell.nix flake (Getting started with Flakes - Alternative Haskell Infrastructure for Nixpkgs) and flake-parts (https://github.com/hercules-ci/flake-parts/blob/19e0f88324d90509141e192664ded98bb88ef9b2/template/default/flake.nix)?
My understanding of flake-parts is that it helps with the system parameter.
I am trying to make a Flake very easy to use on both Mac and Linux.
I am trying to make these commands
nix buildnix flake checknix flake shownix develop
work seamlessly on Mac and Linux without using the --impure flag.
I am looking through these GitHub search results:
haskell.nix flake-parts filename:flake.nix
https://github.com/search?l=&p=1&q=haskell.nix+flake-parts++filename%3Aflake.nix&type=Code
Thank you