19 lines
489 B
Nix
19 lines
489 B
Nix
{inputs, ...}: {
|
|
additions = final: _prev: import ../.old/pkgs {pkgs = final;};
|
|
pkg-sets = final: prev: {
|
|
unstable = import inputs.nixpkgs {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
stable = import inputs.nixpkgs-stable {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
polonium-pkgs = import inputs.nixpkgs-polonium {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
rice = import ./rice.nix;
|
|
}
|