1
0
Fork 0
nix-overlay/flake.nix
2022-07-31 20:41:26 +02:00

22 lines
493 B
Nix

{
description = "Collection of (useful) tools";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs }: {
packages = nixpkgs.lib.genAttrs
[
"aarch64-darwin"
"x86_64-darwin"
"aarch64-linux"
"x86_64-linux"
]
(system: import ./packages.nix {
inherit system;
inherit (nixpkgs) lib;
pkgs = nixpkgs.legacyPackages.${system};
});
overlay = import ./overlay.nix;
};
}