dots/modules/browser/chromium.nix

20 lines
618 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = [
pkgs.chromium # not enabled through programs.chromium.enable
];
programs.chromium = {
enable = true;
enablePlasmaBrowserIntegration = if (config.services.desktopManager.plasma6.enable == true) then true else false;
extensions = [
"ddkjiahejlhfcafbddmgiahcphecmpfh" # ublock origin lite
"aeblfdkhhhdcdjpifhhbdiojplfjncoa" # 1Password
"eimadpbcbfnmbkopoojfekhnkhdbieeh" # dark reader
"mnjggcdmjocbbbhaepdhchncahnbgone" # sponsorblock
"fnaicdffflnofjppbagibeoednhnbjhg" # floccus bookmark sync
];
};
}