prevent future breakage

This commit is contained in:
Daylin Morgan 2024-05-10 12:04:00 -05:00
parent 610d339b59
commit f096d3fe19
Signed by: daylin
GPG Key ID: 950D13E9719334AD
1 changed files with 4 additions and 1 deletions

View File

@ -22,7 +22,10 @@ mkOizysModule config "chrome" {
};
environment.systemPackages = with pkgs; [
(chromium.override { commandLineArgs = [ "--force-dark-mode" ]; })
(chromium.override {
commandLineArgs = [ "--force-dark-mode" ];
enableWideVine = true;
})
(google-chrome.override { commandLineArgs = [ "--force-dark-mode" ]; })
];