flake: only declare output for linux platforms, darwin is not used anyway

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-01-23 12:42:16 +01:00
parent 15a672d6ee
commit 49f26e152e
Signed by: c8h4
GPG key ID: 1538094429952F86

View file

@ -17,7 +17,7 @@
};
outputs = { self, nixpkgs, flake-utils, treefmt-nix, ... }:
flake-utils.lib.eachDefaultSystem (system:
flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-linux" ] (system:
let
pkgs = import nixpkgs { inherit system; };
inherit (pkgs) lib;