flake: make systems overrideable

This commit is contained in:
Jacob Birkett 2024-02-01 23:34:31 -07:00
parent 3dbfeee0df
commit f5aef0b4d2

View file

@ -3,22 +3,19 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default";
alejandra.url = "github:kamadorueda/alejandra";
};
outputs = inputs @ {
outputs = {
self,
nixpkgs,
systems,
alejandra,
}: let
inherit (nixpkgs.lib) genAttrs;
forAllSystems = f:
genAttrs [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
] (system: f nixpkgs.legacyPackages.${system});
genAttrs (import systems) (system: f nixpkgs.legacyPackages.${system});
in {
packages = forAllSystems (pkgs:
with pkgs; {