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:
parent
15a672d6ee
commit
49f26e152e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue