Files
nixos/system/overlays.nix
T
2026-05-09 15:26:39 +05:30

20 lines
375 B
Nix

{ inputs, ... }:
{
nixpkgs.overlays = [
(final: prev:
let
unstable-pkgs = import inputs.nixpkgs-unstable {
inherit (prev) system;
config.allowUnfree = true;
config.allowUnsupportedSystem = true;
};
in
{
inherit (unstable-pkgs) pear-desktop;
unstable = unstable-pkgs;
}
)
];
}