20 lines
394 B
Nix
20 lines
394 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
nixpkgs.overlays = [
|
|
(final: prev:
|
|
let
|
|
unstable-pkgs = import inputs.nixpkgs-unstable {
|
|
system = prev.stdenv.hostPlatform.system;
|
|
config.allowUnfree = true;
|
|
config.allowUnsupportedSystem = true;
|
|
};
|
|
in
|
|
{
|
|
inherit (unstable-pkgs) pear-desktop;
|
|
unstable = unstable-pkgs;
|
|
}
|
|
)
|
|
];
|
|
}
|