13 lines
227 B
Nix
13 lines
227 B
Nix
system: nixpkgs: extraOverlays:
|
|
|
|
{
|
|
system = system;
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
overlays =
|
|
[
|
|
(import ../overlays/python.nix)
|
|
] ++ extraOverlays;
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|