This commit is contained in:
2025-09-20 18:42:57 +01:00
parent 8bd0b65df7
commit 951475157b
9 changed files with 108 additions and 28 deletions

View File

@@ -0,0 +1,17 @@
{ inputs, pkgs, system, ... }:
let
in
{
programs.chromium = {
enable = true;
extensions = [
{ id = "ghmbeldphafepmbegfdlkpapadhbakde"; } # ProtonPass
{ id = "cjpalhdlnbpafiamejdnhcphjbkeiagm"; } # Ublock
{ id = "kpmjjdhbcfebfjgdnpjagcndoelnidfj"; } # Control panel for twitter
{ id = "aighbdamfnndbemigjcbkdklkegkgmpl"; } # Better twitter embeds
{ id = "enamippconapkdmgfgjchkhakpfinmaj"; } # DeArrow
];
package = pkgs.chromium.override { enableWideVine = true; };
};
}