From ae45f208a2b13e554150408a00662918261172c9 Mon Sep 17 00:00:00 2001 From: Andrea Bedini Date: Fri, 3 Mar 2023 16:55:03 +0800 Subject: [PATCH] Restrict flake to x86_64-linux --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e306afe..9a29da5 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,7 @@ outputs = { self, nixpkgs, flake-utils, haskell-nix }: - flake-utils.lib.eachDefaultSystem (system: + flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: let pkgs = import nixpkgs { inherit system;