chromium: add support for ungoogled-chromium
This commit is contained in:
parent
89d10f8adc
commit
5d03f0b41d
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue