Skip to content

Commit

Permalink
Focus only on systems where I have at least one device
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Nov 14, 2024
1 parent 4415cc4 commit 61470e0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@
let
inherit (self) outputs;
# Candidates: https://github.com/NixOS/nixpkgs/blob/release-24.05/lib/systems/flake-systems.nix
forAllSystems = nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed;
forAllSystems = nixpkgs.lib.genAttrs (
nixpkgs.lib.intersectLists [
"x86_64-linux"
"x86_64-darwin"
] nixpkgs.lib.systems.flakeExposed
);

mkApp = pkg: {
type = "app";
Expand Down

0 comments on commit 61470e0

Please sign in to comment.