From 4c8449adfb3761a794939f84a73fe36f1153babf Mon Sep 17 00:00:00 2001 From: Farid Zakaria Date: Thu, 20 Mar 2025 17:25:40 -0700 Subject: [PATCH] Support more systems Not sure why we choose to limit the supported systems in a flake. Anyways -- I was trying to demonstrate this on my macbook (I like your repo!) and found that it doesn't work. Expanding the systems! --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 894891b..1d66014 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ outputs = { self, nixpkgs }: let # System types to support. - supportedSystems = [ "x86_64-linux" ]; #"x86_64-darwin" "aarch64-linux"]; + supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; # Helper functions forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: f system);