1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
This commit is contained in:
networkException 2025-03-20 09:09:58 +00:00 committed by GitHub
commit e4d6ee2210
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,6 +6,7 @@ let
supportedBrowsers = [ supportedBrowsers = [
"chromium" "chromium"
"ungoogled-chromium"
"google-chrome" "google-chrome"
"google-chrome-beta" "google-chrome-beta"
"google-chrome-dev" "google-chrome-dev"
@ -160,6 +161,7 @@ let
darwinDirs = { darwinDirs = {
chromium = "Chromium"; chromium = "Chromium";
ungoogled-chromium = "Chromium";
google-chrome = "Google/Chrome"; google-chrome = "Google/Chrome";
google-chrome-beta = "Google/Chrome Beta"; google-chrome-beta = "Google/Chrome Beta";
google-chrome-dev = "Google/Chrome Dev"; google-chrome-dev = "Google/Chrome Dev";
@ -228,6 +230,8 @@ in {
options.programs = { options.programs = {
chromium = browserModule pkgs.chromium "Chromium" true; 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 = browserModule pkgs.google-chrome "Google Chrome" false;
google-chrome-beta = google-chrome-beta =
browserModule pkgs.google-chrome-beta "Google Chrome Beta" false; browserModule pkgs.google-chrome-beta "Google Chrome Beta" false;