mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 14:17:58 -05:00
Fix. Everything. Co-authored-by: Andrei Cravtov <the.andrei.cravtov@gmail.com> Co-authored-by: Matt Beton <matthew.beton@gmail.com> Co-authored-by: Alex Cheema <alexcheema123@gmail.com> Co-authored-by: Seth Howes <sethshowes@gmail.com>
13 lines
197 B
Nix
13 lines
197 B
Nix
{
|
|
perSystem =
|
|
{ lib, pkgs, ... }:
|
|
lib.mkMerge [
|
|
(lib.mkIf pkgs.stdenv.isDarwin {
|
|
make-shells.default = {
|
|
packages = [ pkgs.macmon ];
|
|
};
|
|
})
|
|
];
|
|
|
|
}
|