From bc9f888bcf5e03c4428a28729990d34329f7a9c8 Mon Sep 17 00:00:00 2001 From: Reed Krantz Date: Tue, 28 Apr 2026 17:12:39 -0500 Subject: [PATCH] fix: fix warning about x86_64-darwin being depreciated --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8c87d60..88f5354 100644 --- a/flake.nix +++ b/flake.nix @@ -49,7 +49,7 @@ imports = builtins.attrValues (builtins.removeAttrs self.flakeModules ["default"]); }; - systems = ["aarch64-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin"]; + systems = ["aarch64-linux" "x86_64-linux" "aarch64-darwin"]; perSystem = {pkgs, ...}: {formatter = pkgs.alejandra;}; };