Skip to content

Commit

Permalink
flake: limit platforms to evaluate
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Sep 8, 2023
1 parent 5cc0a9f commit 8eb0d37
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@
outputs = inputs @ { flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } ({ lib, ... }: {
imports = [ ./treefmt.nix ];
systems = lib.systems.flakeExposed;
systems = [
"aarch64-linux"
"x86_64-linux"
"riscv64-linux"

"x86_64-darwin"
"aarch64-darwin"
];
perSystem = { config, pkgs, self', ... }: {
packages.nix-update = pkgs.callPackage ./. { };
packages.default = config.packages.nix-update;
Expand Down

0 comments on commit 8eb0d37

Please sign in to comment.