tvl-depot/users/tazjin/nixos/modules/chromium.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
678 B
Nix
Raw Normal View History

# Configure the Chromium browser with various useful things.
{ pkgs, ... }:
{
environment.systemPackages = [
(pkgs.chromium.override {
enableWideVine = true; # DRM support (for Кинопоиск)
})
];
programs.chromium = {
enable = true;
homepageLocation = "about:blank";
extensions = [
"dbepggeogbaibhgnhhndojpepiihcmeb" # Vimium
"cjpalhdlnbpafiamejdnhcphjbkeiagm" # uBlock Origin
"mohaicophfnifehkkkdbcejkflmgfkof" # nitter redirect
"lhdifindchogekmjooeiolmjdlheilae" # Huruf
];
extraOpts = {
SpellcheckEnabled = true;
SpellcheckLanguage = [
"ru"
"en-GB"
];
};
};
}