all repos — nixfiles @ 198a6cdd4ca5867702a8638ad2e51f2dffedd450

System and user configuration, managed by nix and home-manager

dev/web: install ungoogled-chromium for testing
Alan Pearce alan@alanpearce.eu
Sat, 01 Jun 2024 20:06:45 +0200
commit

198a6cdd4ca5867702a8638ad2e51f2dffedd450

parent

c944072dadc74f222d7a2160479d3074e4782338

1 files changed, 17 insertions(+), 0 deletions(-)

jump to
M user/settings/development/web.nixuser/settings/development/web.nix
@@ -1,5 +1,6 @@ { config
 , pkgs
+, lib
 , ...
 }: {
   home.packages = with pkgs.nodePackages; [
@@ -15,6 +16,22 @@ ]);   home.shellAliases = {
     # 0.2.25 current completion command only affects `flyctl`, although `fly` is a link to `flyctl`
     fly = "flyctl";
+  };
+  programs.chromium = lib.mkIf pkgs.stdenv.isLinux {
+    enable = true;
+    package = pkgs.ungoogled-chromium;
+    extensions = [
+      # # uBlock origin
+      { id = "cjpalhdlnbpafiamejdnhcphjbkeiagm"; }
+      {
+        id = "ocaahdebbfolfmndjeplogmgcagdmblk";
+        updateUrl = "https://raw.githubusercontent.com/NeverDecaf/chromium-web-store/master/updates.xml";
+      }
+    ];
+    dictionaries = with pkgs.hunspellDictsChromium; [
+      en-gb
+      de-de
+    ];
   };
   programs.emacs.extraPackages = epkgs: (with epkgs; [
     caddyfile-mode