added additional systems to flake

This commit is contained in:
2026-05-04 16:00:33 -04:00
parent 1a213cc37e
commit 4356f5fdbd
2 changed files with 15 additions and 6 deletions

View File

@@ -5,11 +5,21 @@
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
in {
packages.${system}.sable = pkgs.callPackage ./pkgs/sable.nix {};
packages = nixpkgs.lib.genAttrs systems (
system:
let
pkgs = import nixpkgs {
inherit system;
};
in {
sable = pkgs.callPackage ./pkgs/sable.nix {};
}
);
};
}