1
0
Fork 0
nix-overlay/flake.nix

22 lines
493 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"
2022-07-31 18:41:26 +00:00
"aarch64-linux"
"x86_64-linux"
2021-12-14 17:54:48 +00:00
]
(system: import ./packages.nix {
inherit system;
2021-12-18 18:41:03 +00:00
inherit (nixpkgs) lib;
2021-12-14 17:54:48 +00:00
pkgs = nixpkgs.legacyPackages.${system};
});
overlay = import ./overlay.nix;
};
}