This commit is contained in:
networkException 2024-04-28 03:08:32 +00:00 committed by GitHub
commit 5ad128e4ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -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;