From ff589a41d5a5e5850953e4ad5decd897d34b2f21 Mon Sep 17 00:00:00 2001 From: jonny <32085184+jonnyjohnson1@users.noreply.github.com> Date: Sat, 16 Nov 2024 19:14:13 -0600 Subject: [PATCH] feat: add darwin to flake dist --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 4c6f47a..1996688 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,7 @@ outputs = { self, nixpkgs, flake-parts, poetry2nix, process-compose-flake, services-flake }@inputs: flake-parts.lib.mkFlake { inherit inputs; } { imports = [ inputs.process-compose-flake.flakeModule ]; - systems = [ "x86_64-linux" "aarch64-darwin" ]; + systems = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin"]; perSystem = { self', pkgs, system, lib, ... }: let pkgs = import nixpkgs {