From 44e8fc72ca30a1e960293e2fa1157a5a20de4864 Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Sun, 3 Apr 2022 23:25:09 +0200 Subject: [PATCH] [Programs] Use standard chromium --- overlays.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/overlays.nix b/overlays.nix index 36f05f9..c3ab6d5 100644 --- a/overlays.nix +++ b/overlays.nix @@ -117,13 +117,17 @@ in ungoogled-chromium = super.ungoogled-chromium.override { enableWideVine = true; }; - chromium = self.ungoogled-chromium; + chromium = super.chromium.override { + enableWideVine = true; + }; + # chromium = self.ungoogled-chromium; }) ]; aviallon.programs.allowUnfreeList = [ "unrar" "ark" - "chromium-unwrapped" "chrome-widevine-cdm" "ungoogled-chromium" # because of widevine + "chromium-unwrapped" "chrome-widevine-cdm" + "ungoogled-chromium" "chromium" # because of widevine ]; }; }