staging -> production #6

Merged
vinzenz merged 8 commits from staging into production 2025-06-07 22:44:35 +02:00
Showing only changes of commit 6aadea1155 - Show all commits

limit systems to the common ones in flake

Vinzenz Schroeter 2025-06-06 18:50:28 +02:00

View file

@ -11,9 +11,15 @@
nixpkgs, nixpkgs,
}: }:
let let
supported-systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
forAllSystems = forAllSystems =
f: f:
nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed ( nixpkgs.lib.genAttrs supported-systems (
system: system:
f rec { f rec {
inherit system; inherit system;