From 1dc89b551ae3c973e590112c49272132fde12810 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Thu, 9 Oct 2025 14:41:33 -0700 Subject: x86_64-linux has been spelled wrong this entire time and we never noticed because we only had ARM machines, but that has changed this fixes it, which should help with both the dev shell and `nix flake check` I'm doing this fix in every repo, see also cl/1659 Change-Id: Icf01e9fe15669a67c87417302e4d2ab3b13d82cd Force-Push: trivial changes across many repos; too much work to review all of them --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e5f2204..f495553 100644 --- a/flake.nix +++ b/flake.nix @@ -9,7 +9,7 @@ }; outputs = { self, nixpkgs, ... }@attrs: - let supportedSystems = [ "aarch64-linux" "x86-64-linux" ]; + let supportedSystems = [ "aarch64-linux" "x86_64-linux" ]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; }); in { -- cgit 1.4.1