Are you following the right branch?
Is there an existing issue for this?
Issue description
programs.google-chrome.extensions, programs.google-chrome.dictionaries, and programs.google-chrome.nativeMessagingHosts apparently require a different implementation than other Chromium browsers
#1383 raised this issue for programs.google-chrome.extensions
and #1867 simply disabled programs.google-chrome.extensions entirely :
|
// lib.optionalAttrs (!isProprietaryChrome) { |
|
# Extensions do not work with Google Chrome |
|
# see https://github.com/nix-community/home-manager/issues/1383 |
|
# Extensions do not work with the proprietary Google Chrome version |
|
# see https://github.com/nix-community/home-manager/issues/1383 |
However, it is not fixed and could also support extensions with a specific implementation in programs.chromium.extensions
Same thing with programs.google-chrome.dictionaries :
|
dictionaries = mkOption { |
|
inherit visible; |
|
type = types.listOf types.package; |
|
default = [ ]; |
|
example = literalExpression '' |
|
[ |
|
pkgs.hunspellDictsChromium.en_US |
|
] |
|
''; |
|
description = '' |
|
List of ${name} dictionaries to install. |
|
''; |
|
}; |
And programs.google-chrome.nativeMessagingHosts :
|
nativeMessagingHosts = mkOption { |
|
type = types.listOf types.package; |
|
default = [ ]; |
|
example = literalExpression '' |
|
[ |
|
pkgs.kdePackages.plasma-browser-integration |
|
] |
|
''; |
|
description = '' |
|
List of ${name} native messaging hosts to install. |
|
''; |
|
}; |
Maintainer CC
@khaneliman @berbiche
System information
Are you following the right branch?
Is there an existing issue for this?
Issue description
programs.google-chrome.extensions,programs.google-chrome.dictionaries, andprograms.google-chrome.nativeMessagingHostsapparently require a different implementation than other Chromium browsers#1383 raised this issue for
programs.google-chrome.extensionsand #1867 simply disabled
programs.google-chrome.extensionsentirely :home-manager/modules/programs/chromium.nix
Lines 82 to 84 in 3c7524c
home-manager/modules/programs/chromium.nix
Lines 278 to 279 in 3c7524c
However, it is not fixed and could also support extensions with a specific implementation in
programs.chromium.extensionsSame thing with
programs.google-chrome.dictionaries:home-manager/modules/programs/chromium.nix
Lines 155 to 167 in 3c7524c
And
programs.google-chrome.nativeMessagingHosts:home-manager/modules/programs/chromium.nix
Lines 169 to 180 in 3c7524c
Maintainer CC
@khaneliman @berbiche
System information