15 lines
432 B
Nix
15 lines
432 B
Nix
{inputs, ...}: {
|
|
additions = final: _prev: import ./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;
|
|
};
|
|
};
|
|
rice = import ./rice.nix;
|
|
podman-stable = final: prev: {podman-stable = final.stable.podman;};
|
|
}
|