13 lines
216 B
Nix
13 lines
216 B
Nix
system: nixpkgs: # e.g. x86_64-linux
|
|
|
|
{
|
|
system = system;
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
overlays =
|
|
[
|
|
(import ../overlays/python.nix)
|
|
];
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|