arion/nix/default.nix
Robert Hensing 80a4dbe8b9 Build matrix
2019-10-04 17:16:41 +02:00

16 lines
328 B
Nix

{ sources ? import ./sources.nix
, nixpkgsSrc ? sources.nixpkgs
, system ? builtins.currentSystem
, ...
}:
import nixpkgsSrc ({
# Makes the config pure as well. See <nixpkgs>/top-level/impure.nix:
config = {
};
overlays = [
# all the packages are defined there:
(import ./overlay.nix)
];
inherit system;
})