1
0
Fork 0
nix-overlay/flake.nix

19 lines
415 B
Nix
Raw Normal View History

2021-12-14 17:54:48 +00:00
{
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"
]
(system: import ./packages.nix {
inherit system;
pkgs = nixpkgs.legacyPackages.${system};
});
overlay = import ./overlay.nix;
};
}