diff options
| author | Irene Knapp <ireneista@internetsafetylabs.org> | 2025-10-09 14:41:33 -0700 |
|---|---|---|
| committer | Irenes <ireneista@internetsafetylabs.org> | 2025-10-09 14:52:37 -0700 |
| commit | 1dc89b551ae3c973e590112c49272132fde12810 (patch) | |
| tree | 5c979cff6a766f895b5776cb1417cb22f1669006 | |
| parent | 673ce2438657bd81d2226e2dc8918d4ef9d34137 (diff) | |
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
| -rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |