mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
flake: only support linux + darwin
This is to prevent errors with `flake check` because for example cygwin can't even build bash. Closes #2829
This commit is contained in:
parent
2f58d0a3de
commit
b23bb05890
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
outputs = { self, nixpkgs }:
|
outputs = { self, nixpkgs }:
|
||||||
let
|
let
|
||||||
# List of systems supported by home-manager binary
|
# 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
|
# Function to generate a set based on supported systems
|
||||||
forAllSystems = f:
|
forAllSystems = f:
|
||||||
|
|
Loading…
Reference in a new issue