fix unfree error
Some checks failed
checks / checks (push) Has been cancelled

This commit is contained in:
2025-10-07 15:59:52 +04:00
parent 76536821fb
commit 63dd4c75bc

View File

@@ -28,6 +28,11 @@
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"widevine-cdm"
];
};
inherit (pkgs) lib;
scope = lib.makeScope pkgs.newScope (final: self.overlays.default (pkgs // final) pkgs);