mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
Merge 5d03f0b41d
into 94605dcade
This commit is contained in:
commit
e4d6ee2210
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue