[Packages+Overlays] Use ungoogled-chromium instead of chromium

Signed-off-by: Antoine Viallon <antoine@lesviallon.fr>
This commit is contained in:
Antoine Viallon 2022-03-27 14:45:12 +02:00
parent c2d8689dc4
commit bd85fa2566
Signed by: aviallon
GPG key ID: 186FC35EDEB25716
2 changed files with 6 additions and 4 deletions

View file

@ -187,7 +187,7 @@ in {
environment.systemPackages = with pkgs; with libsForQt5; [ environment.systemPackages = with pkgs; with libsForQt5; [
# firefox # firefox
chromium ungoogled-chromium
konsole konsole
kate kate
yakuake yakuake

View file

@ -97,8 +97,7 @@ in
ark = optimizeForThisHost (super.ark.override { ark = optimizeForThisHost (super.ark.override {
unfreeEnableUnrar = true; unfreeEnableUnrar = true;
}); });
chromium = super.ungoogled-chromium.override { ungoogled-chromium = super.ungoogled-chromium.override {
# ungoogled = true;
enableWideVine = true; enableWideVine = true;
}; };
}) })
@ -109,6 +108,9 @@ in
# }) # })
]; ];
aviallon.programs.allowUnfreeList = [ "unrar" "ark" ]; aviallon.programs.allowUnfreeList = [
"unrar" "ark"
"chromium-unwrapped" "chrome-widevine-cdm" "ungoogled-chromium" # because of widevine
];
}; };
} }