From 368f8584b34f39aee2c09711a754db0105a6353b Mon Sep 17 00:00:00 2001 From: ~martyr-binbex <> Date: Thu, 8 Feb 2024 17:21:47 -0600 Subject: [PATCH] fix up --- rust/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/flake.nix b/rust/flake.nix index 651eee4..7890ad9 100644 --- a/rust/flake.nix +++ b/rust/flake.nix @@ -37,7 +37,7 @@ ] ++ (nixpkgs.lib.lists.optional (parsedSystem.kernel.name != "darwin") pkgs.gdb) # nixpkgs won't build gdb for darwin ++ - (nixpkgs.lib.lists.optional (parsedSystem.kernel.name != "darwin") pkgs.cargo-watch); # nixpkgs won't build gdb for darwin + (nixpkgs.lib.lists.optional (parsedSystem.kernel.name != "darwin" || parsedSystem.cpu.name != "x86_64") pkgs.cargo-watch); # nixpkgs won't build cargo-watch for darwin-x86 }; } );