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