From b23bb05890f4a5f31f4e0d7bc2fe25bc6d4166ac Mon Sep 17 00:00:00 2001 From: Sandro Date: Sat, 26 Mar 2022 10:59:30 +0100 Subject: [PATCH] flake: only support linux + darwin This is to prevent errors with `flake check` because for example cygwin can't even build bash. Closes #2829 --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9382351e..5d9bb01f 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ outputs = { self, nixpkgs }: let # List of systems supported by home-manager binary - supportedSystems = nixpkgs.lib.platforms.unix; + supportedSystems = with nixpkgs.lib.platforms; linux ++ darwin; # Function to generate a set based on supported systems forAllSystems = f: