diff --git a/modules/programs/chromium.nix b/modules/programs/chromium.nix index c97fd059..12971a16 100644 --- a/modules/programs/chromium.nix +++ b/modules/programs/chromium.nix @@ -6,6 +6,7 @@ let supportedBrowsers = [ "chromium" + "ungoogled-chromium" "google-chrome" "google-chrome-beta" "google-chrome-dev" @@ -134,6 +135,7 @@ let darwinDirs = { chromium = "Chromium"; + ungoogled-chromium = "Chromium"; google-chrome = "Google/Chrome"; google-chrome-beta = "Google/Chrome Beta"; google-chrome-dev = "Google/Chrome Dev"; @@ -184,6 +186,8 @@ in { options.programs = { chromium = browserModule pkgs.chromium "Chromium" true; + ungoogled-chromium = + browserModule pkgs.ungoogled-chromium "ungoogled-chromium" false; google-chrome = browserModule pkgs.google-chrome "Google Chrome" false; google-chrome-beta = browserModule pkgs.google-chrome-beta "Google Chrome Beta" false;