diff --git a/modules/programs/chromium.nix b/modules/programs/chromium.nix index 0a02311b7..0a7fb620c 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" @@ -148,6 +149,7 @@ let darwinDirs = { chromium = "Chromium"; + ungoogled-chromium = "Chromium"; google-chrome = "Google/Chrome"; google-chrome-beta = "Google/Chrome Beta"; google-chrome-dev = "Google/Chrome Dev"; @@ -204,6 +206,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;