mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 01:24:05 -05:00
23 lines
556 B
Nix
23 lines
556 B
Nix
{ inputs, ... }:
|
|
let
|
|
stable-packages = final: _prev: {
|
|
stable = import inputs.nixpkgs-stable {
|
|
inherit (final.stdenv.hostPlatform) system;
|
|
config.allowUnfree = true;
|
|
# overlays = [
|
|
# ];
|
|
};
|
|
};
|
|
|
|
unstable-packages = final: _prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
inherit (final.stdenv.hostPlatform) system;
|
|
config.allowUnfree = true;
|
|
# overlays = [
|
|
# ];
|
|
};
|
|
};
|
|
in
|
|
{
|
|
default = final: prev: (stable-packages final prev) // (unstable-packages final prev);
|
|
}
|